summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2022-03-28 15:50:29 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2022-03-28 16:13:23 -0400
commitd741367c388ec1b7083a2c242911745647ec9a28 (patch)
treebf6b17f1008c6faa06af9314a4f0366a68cc3f93 /tests
parent8fc58eaa77f2118cf78ecdaca130bc298ff4143a (diff)
downloadalembic-d741367c388ec1b7083a2c242911745647ec9a28.tar.gz
bump black to 22.3.0
both black and click were released in the past few hours, and black 21.5b1 seems to suddenly be failing on a missing symbol from click. just update to the latest Change-Id: Icb9d98d6473aa603aa29ad1c2d1e43ff3b371db5
Diffstat (limited to 'tests')
-rw-r--r--tests/test_bulk_insert.py2
-rw-r--r--tests/test_postgresql.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_bulk_insert.py b/tests/test_bulk_insert.py
index 09c641a..1ad5b96 100644
--- a/tests/test_bulk_insert.py
+++ b/tests/test_bulk_insert.py
@@ -322,5 +322,5 @@ class RoundTripTest(TestBase):
self.conn.execute(
text("select id, v1, v2 from ins_table order by id")
).fetchall(),
- [(1, u"row v1", u"row v5"), (2, u"row v2", u"row v6")],
+ [(1, "row v1", "row v5"), (2, "row v2", "row v6")],
)
diff --git a/tests/test_postgresql.py b/tests/test_postgresql.py
index 6e76fd6..9246575 100644
--- a/tests/test_postgresql.py
+++ b/tests/test_postgresql.py
@@ -768,7 +768,7 @@ class PostgresqlDefaultCompareTest(TestBase):
)
def test_compare_unicode_literal(self):
- self._compare_default_roundtrip(String(), u"im a default")
+ self._compare_default_roundtrip(String(), "im a default")
# TOOD: will need to actually eval() the repr() and
# spend more effort figuring out exactly the kind of expression