summaryrefslogtreecommitdiff
path: root/test/dialect/mssql.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/dialect/mssql.py')
-rwxr-xr-xtest/dialect/mssql.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/mssql.py b/test/dialect/mssql.py
index 05d9efd78..3b40ed354 100755
--- a/test/dialect/mssql.py
+++ b/test/dialect/mssql.py
@@ -46,7 +46,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()