diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-02-01 21:34:53 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-02-01 21:34:53 -0500 |
| commit | 5ae8a54ed381735a88141b8ec5326b21c36e793b (patch) | |
| tree | d98bb0b48c893f51a545155c9515353eca32146f /test | |
| parent | 7e48d8b2a70b399ffa6ec874f824d6cee82980a0 (diff) | |
| download | sqlalchemy-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
Diffstat (limited to 'test')
| -rw-r--r-- | test/ext/test_indexable.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
