]> 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)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 13 May 2016 15:42:18 +0000 (11:42 -0400)
(cherry picked from commit ba3d4aa5baebacfef8a56de66a5c06cd1372e893)

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"