diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-08-19 09:32:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-19 09:32:51 -0500 |
commit | ee82dc78aba83013d3e3581514d031094325e184 (patch) | |
tree | acb3ff6c98914174e2f6e7ebd0fd4015efeb0a66 /numpy/testing/tests/test_utils.py | |
parent | e8d177f74adbe5c7630721a4ab3f20f58839ac99 (diff) | |
parent | da0727912ef179f5491412f737292f12844a8a6f (diff) | |
download | numpy-ee82dc78aba83013d3e3581514d031094325e184.tar.gz |
Merge pull request #11784 from mattip/pep8-test-methods
MAINT: reformat line spacing before test methods
Diffstat (limited to 'numpy/testing/tests/test_utils.py')
-rw-r--r-- | numpy/testing/tests/test_utils.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/numpy/testing/tests/test_utils.py b/numpy/testing/tests/test_utils.py index 84d310992..2c60e2867 100644 --- a/numpy/testing/tests/test_utils.py +++ b/numpy/testing/tests/test_utils.py @@ -1391,7 +1391,6 @@ class TestAssertNoGcCycles(object): assert_no_gc_cycles(no_cycle) - def test_asserts(self): def make_cycle(): a = [] @@ -1406,7 +1405,6 @@ class TestAssertNoGcCycles(object): with assert_raises(AssertionError): assert_no_gc_cycles(make_cycle) - def test_fails(self): """ Test that in cases where the garbage cannot be collected, we raise an |