]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
change "psotgresql" to 'postgresql' in decorator
authorMark Sandan <msandan@utexas.edu>
Sat, 7 May 2016 01:26:31 +0000 (18:26 -0700)
committerMark Sandan <msandan@utexas.edu>
Sat, 7 May 2016 01:26:31 +0000 (18:26 -0700)
test/ext/test_compiler.py

index 5ed50442f7b8da31e7eaafe17400f2339a90b893..f381ca185b1fa562f41d2b78a9b4bb6c550d4b38 100644 (file)
@@ -127,7 +127,7 @@ class UserDefinedTest(fixtures.TestBase, AssertsCompiledSQL):
         class MyThingy(ColumnClause):
             pass
 
-        @compiles(MyThingy, "psotgresql")
+        @compiles(MyThingy, 'postgresql')
         def visit_thingy(thingy, compiler, **kw):
             return "mythingy"