diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-01-05 13:00:21 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-01-05 17:23:48 -0500 |
| commit | ea4feb3cec459f184c57ce8361fbdcea112e6667 (patch) | |
| tree | 0b177dcaadbd9d29188c6a113eb54678382ba302 /test/sql/test_unicode.py | |
| parent | 5ba7cb3e130ea68434047926d4f330319ed72af1 (diff) | |
| download | sqlalchemy-ea4feb3cec459f184c57ce8361fbdcea112e6667.tar.gz | |
flake8 refactor - test_core
A full rewrite of all imports and pep8 formatting using zimports, black,
commits are broken into sections.
Directories included in this commit:
test/sql/ test/aaa_profiling/
Change-Id: I2bad1bd95dcf5cf76aad242280587e541e44fa9b
(cherry picked from commit a4df4fc8bdf556c4153026ac0aa1b55750eaa8da)
Diffstat (limited to 'test/sql/test_unicode.py')
| -rw-r--r-- | test/sql/test_unicode.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/sql/test_unicode.py b/test/sql/test_unicode.py index fc4ac3de2..5b51644e6 100644 --- a/test/sql/test_unicode.py +++ b/test/sql/test_unicode.py @@ -1,12 +1,10 @@ # coding: utf-8 """verrrrry basic unicode column name testing""" -from sqlalchemy import Column from sqlalchemy import desc from sqlalchemy import ForeignKey from sqlalchemy import Integer from sqlalchemy import MetaData -from sqlalchemy import Table from sqlalchemy import testing from sqlalchemy.testing import engines from sqlalchemy.testing import eq_ @@ -198,7 +196,8 @@ class UnicodeSchemaTest(fixtures.TestBase): repr(t), ( "Table('\\u6e2c\\u8a66', MetaData(bind=None), " - "Column('\\u6e2c\\u8a66_id', Integer(), table=<\u6e2c\u8a66>), " + "Column('\\u6e2c\\u8a66_id', Integer(), " + "table=<\u6e2c\u8a66>), " "schema=None)" ), ) |
