diff options
| author | Diana Clarke <diana.joan.clarke@gmail.com> | 2012-11-23 11:09:57 -0500 |
|---|---|---|
| committer | Diana Clarke <diana.joan.clarke@gmail.com> | 2012-11-23 11:09:57 -0500 |
| commit | 66c5bc6c7094b39c1599c3bc074f9a15a52cb3c6 (patch) | |
| tree | 662ba22d726940ec040cda0dacae2a6e93ef2853 /test/sql/test_quote.py | |
| parent | 0f0ce7c9b7c4b3a9f1329dfa9c42d0d69386d48f (diff) | |
| download | sqlalchemy-66c5bc6c7094b39c1599c3bc074f9a15a52cb3c6.tar.gz | |
just a pep8 pass before I play with these tests
Diffstat (limited to 'test/sql/test_quote.py')
| -rw-r--r-- | test/sql/test_quote.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/test_quote.py b/test/sql/test_quote.py index 766d9d485..50a8a414b 100644 --- a/test/sql/test_quote.py +++ b/test/sql/test_quote.py @@ -74,7 +74,7 @@ class QuoteTest(fixtures.TestBase, AssertsCompiledSQL): result = select(columns).execute().fetchall() assert(result == [(1, 2, 3), (2, 2, 3), (4, 3, 2)]) - def test_basic_use_labels(self): + def test_use_labels(self): table1.insert().execute( {'lowercase': 1, 'UPPERCASE': 2, 'MixedCase': 3, 'a123': 4}, {'lowercase': 2, 'UPPERCASE': 2, 'MixedCase': 3, 'a123': 4}, |
