From 3c97911d9d2bfdcebd770fffcbcae677d06e7a6c Mon Sep 17 00:00:00 2001 From: Philip Jenvey Date: Wed, 15 Jul 2009 20:58:01 +0000 Subject: [PATCH] use locale neutral ISO date format patch from Demi-God --- test/dialect/test_postgresql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/dialect/test_postgresql.py b/test/dialect/test_postgresql.py index e4b66c398d..58a0d34145 100644 --- a/test/dialect/test_postgresql.py +++ b/test/dialect/test_postgresql.py @@ -909,7 +909,7 @@ class TimestampTest(TestBase, AssertsExecutionResults): engine = testing.db connection = engine.connect() - s = select(["timestamp '12/25/07'"]) + s = select(["timestamp '2007-12-25'"]) result = connection.execute(s).fetchone() eq_(result[0], datetime.datetime(2007, 12, 25, 0, 0)) -- 2.47.3