projects
/
cached-property.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a2d71f1
)
Ignore line that breaks Flake8 check for Python 2.7
author
Daniel Feldroy
<pydanny@users.noreply.github.com>
Mon, 21 Sep 2020 17:29:21 +0000
(10:29 -0700)
committer
GitHub
<noreply@github.com>
Mon, 21 Sep 2020 17:29:21 +0000
(10:29 -0700)
tests/test_coroutine_cached_property.py
patch
|
blob
|
history
diff --git
a/tests/test_coroutine_cached_property.py
b/tests/test_coroutine_cached_property.py
index 88790a0c814e2692c5b494e8454d7e723fe0d654..3a1ea57dca1b372e9ced1daea68eae2efa4922c4 100644
(file)
--- a/
tests/test_coroutine_cached_property.py
+++ b/
tests/test_coroutine_cached_property.py
@@
-57,7
+57,7
@@
class TestCachedProperty(unittest.TestCase):
"""
Assert that both `add_control` and 'control_total` equal `expected`
"""
- value = yield from check.add_control()
+ value = yield from check.add_control()
# noqa
self.assertEqual(value, expected)
self.assertEqual(check.control_total, expected)