summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2019-02-01 21:34:53 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2019-02-01 21:34:53 -0500
commit5ae8a54ed381735a88141b8ec5326b21c36e793b (patch)
treed98bb0b48c893f51a545155c9515353eca32146f
parent7e48d8b2a70b399ffa6ec874f824d6cee82980a0 (diff)
downloadsqlalchemy-5ae8a54ed381735a88141b8ec5326b21c36e793b.tar.gz
repair F632 issue
in b8f9517cddf41dbb47ae4ad120141c7ab1a29ac5 we disabled this new error coming up, but it's just this one line in a test that is in fact wrong. Change-Id: I4e3612596e9735c7db066832d13ccb454c93808f
-rw-r--r--setup.cfg2
-rw-r--r--test/ext/test_indexable.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/setup.cfg b/setup.cfg
index 24a805f26..6d75087b8 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -30,7 +30,7 @@ ignore =
A003,
D,
E203,E305,E711,E712,E721,E722,E741,
- F821,F841,F632
+ F821,F841
N801,N802,N806,
RST304,RST303,RST299,RST399,
W503,W504
diff --git a/test/ext/test_indexable.py b/test/ext/test_indexable.py
index ed7da3ad0..2ffd273bc 100644
--- a/test/ext/test_indexable.py
+++ b/test/ext/test_indexable.py
@@ -164,7 +164,7 @@ class IndexPropertyTest(fixtures.TestBase):
assert j.default is None
assert j.none is None
j.none = 10
- assert j.default is 10
+ assert j.default == 10
assert j.none == 10