From: Mark Sandan Date: Sat, 7 May 2016 01:26:31 +0000 (-0700) Subject: change "psotgresql" to 'postgresql' in decorator X-Git-Tag: rel_1_0_13~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1959263338d96af0aa6967e62296c2b9b325699a;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git change "psotgresql" to 'postgresql' in decorator (cherry picked from commit ba3d4aa5baebacfef8a56de66a5c06cd1372e893) --- diff --git a/test/ext/test_compiler.py b/test/ext/test_compiler.py index 5ed50442f7..f381ca185b 100644 --- a/test/ext/test_compiler.py +++ b/test/ext/test_compiler.py @@ -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"