Browse Source

Fixing failing test.

mark_story 14 years ago
parent
commit
7e44836837
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/Cake/Test/Case/Model/Datasource/Database/PostgresTest.php

+ 1 - 1
lib/Cake/Test/Case/Model/Datasource/Database/PostgresTest.php

@@ -347,7 +347,7 @@ class PostgresTest extends CakeTestCase {
 		setlocale(LC_ALL, 'de_DE');
 
 		$result = $this->db->value(3.141593, 'float');
-		$this->assertEqual((string)$result, "3.141593");
+		$this->assertEqual((string)$result, "3.14159");
 
 		$result = $this->db->value(3.14);
 		$this->assertEqual((string)$result, "3.140000");