diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-03-28 15:52:27 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-03-28 15:58:35 -0400 |
commit | c90396fbe7424c481f8f4ee18b6cedd1fa09c711 (patch) | |
tree | 6abf98023e15fb2ba81c3af3ccb5583de5b94919 /test/dialect/postgresql/test_reflection.py | |
parent | bbd6420b39edb24481f171b8d0081149dd2e5ba7 (diff) | |
download | sqlalchemy-c90396fbe7424c481f8f4ee18b6cedd1fa09c711.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: Idf76732479a264f7f2245699a6bdaff018e3a123
Diffstat (limited to 'test/dialect/postgresql/test_reflection.py')
-rw-r--r-- | test/dialect/postgresql/test_reflection.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/dialect/postgresql/test_reflection.py b/test/dialect/postgresql/test_reflection.py index 9c286145b..cbb1809e4 100644 --- a/test/dialect/postgresql/test_reflection.py +++ b/test/dialect/postgresql/test_reflection.py @@ -1939,15 +1939,15 @@ class IdentityReflectionTest(fixtures.TablesTest): elif col["name"] == "id2": is_true("identity" in col) exp = default.copy() - exp.update(maxvalue=2 ** 31 - 1) + exp.update(maxvalue=2**31 - 1) eq_(col["identity"], exp) elif col["name"] == "id3": is_true("identity" in col) exp = default.copy() - exp.update(maxvalue=2 ** 63 - 1) + exp.update(maxvalue=2**63 - 1) eq_(col["identity"], exp) elif col["name"] == "id4": is_true("identity" in col) exp = default.copy() - exp.update(maxvalue=2 ** 15 - 1) + exp.update(maxvalue=2**15 - 1) eq_(col["identity"], exp) |