diff options
author | Mark Sandan <msandan@utexas.edu> | 2016-05-06 18:26:31 -0700 |
---|---|---|
committer | Mark Sandan <msandan@utexas.edu> | 2016-05-06 18:26:31 -0700 |
commit | ba3d4aa5baebacfef8a56de66a5c06cd1372e893 (patch) | |
tree | 2783ab87e57f83dc48707ea0b71e8814be173c82 | |
parent | 9bdd6f2b1f6b34a82b77849ec05811aa0279931d (diff) | |
download | sqlalchemy-pr/272.tar.gz |
change "psotgresql" to 'postgresql' in decoratorpr/272
-rw-r--r-- | test/ext/test_compiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ext/test_compiler.py b/test/ext/test_compiler.py index 5ed50442f..f381ca185 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" |