summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/dialect/firebird.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/firebird.py b/test/dialect/firebird.py
index 98f0e9e9a..a377a1caf 100644
--- a/test/dialect/firebird.py
+++ b/test/dialect/firebird.py
@@ -70,7 +70,7 @@ class CompileTest(SQLCompileTest):
m = MetaData()
t = Table('sometable', m, Column('col1', Integer), Column('col2', Integer))
- self.assert_compile(select([func.max(t.c.col1)]), "SELECT max(sometable.col1) FROM sometable")
+ self.assert_compile(select([func.max(t.c.col1)]), "SELECT max(sometable.col1) AS max_1 FROM sometable")
class MiscFBTests(PersistTest):