summaryrefslogtreecommitdiff
path: root/test/dialect/postgresql/test_reflection.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/dialect/postgresql/test_reflection.py')
-rw-r--r--test/dialect/postgresql/test_reflection.py6
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)