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_1_0b1~46^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba3d4aa5baebacfef8a56de66a5c06cd1372e893;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git change "psotgresql" to 'postgresql' in decorator --- 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"