diff --git a/unit-tests/DbDescribeTest.php b/unit-tests/DbDescribeTest.php index 6b6e66fcca6..f0c1274491d 100644 --- a/unit-tests/DbDescribeTest.php +++ b/unit-tests/DbDescribeTest.php @@ -442,7 +442,7 @@ public function testDbPostgresql() $tables = $connection->listTables(); $this->assertEquals($tables, $expectedTables); - $tables = $connection->listTables('phalcon_test'); + $tables = $connection->listTables('public'); $this->assertEquals($tables, $expectedTables); //Table exist @@ -479,7 +479,7 @@ public function testDbPostgresql() $describeIndexes = $connection->describeIndexes('robots_parts'); $this->assertEquals($describeIndexes, $expectedIndexes); - $describeIndexes = $connection->describeIndexes('robots_parts', 'phalcon_test'); + $describeIndexes = $connection->describeIndexes('robots_parts', 'public'); $this->assertEquals($describeIndexes, $expectedIndexes); //References @@ -503,7 +503,7 @@ public function testDbPostgresql() $describeReferences = $connection->describeReferences('robots_parts'); $this->assertEquals($describeReferences, $expectedReferences); - $describeReferences = $connection->describeReferences('robots_parts', 'phalcon_test'); + $describeReferences = $connection->describeReferences('robots_parts', 'public'); $this->assertEquals($describeReferences, $expectedReferences); /**/