Skip to content

Commit

Permalink
Fixed default datestyle for postgres tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbasso committed Jun 25, 2013
1 parent accc98f commit 19c94d0
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1001,7 +1001,7 @@ public function testSettings() {
$expected = array(array('r' => date('d/m/Y')));
$r = $dbo2->fetchRow('SELECT now()::date AS "r"');
$this->assertEquals($expected, $r);
$dbo2->execute('SET DATESTYLE TO SQL');
$dbo2->execute('SET DATESTYLE TO ISO');
$dbo2->disconnect();
}

Expand Down

0 comments on commit 19c94d0

Please sign in to comment.