diff options
Diffstat (limited to 'test/dialect/firebird.py')
-rw-r--r-- | test/dialect/firebird.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/firebird.py b/test/dialect/firebird.py index 9d043153c..0abbdf029 100644 --- a/test/dialect/firebird.py +++ b/test/dialect/firebird.py @@ -22,7 +22,7 @@ class CompileTest(SQLCompileTest): def test_function(self): self.assert_compile(func.foo(1, 2), "foo(:foo, :foo_1)") - self.assert_compile(func.current_time(), "current_time") + self.assert_compile(func.current_time(), "CURRENT_TIME") self.assert_compile(func.foo(), "foo") m = MetaData() |