diff options
author | Antonio Cuni <anto.cuni@gmail.com> | 2020-11-20 18:13:38 +0100 |
---|---|---|
committer | Antonio Cuni <anto.cuni@gmail.com> | 2020-11-20 18:13:38 +0100 |
commit | c1e936d61a28d7243b8cdc646aa5bb873d4cb02b (patch) | |
tree | df08c30ef9e9f0555e7d23c650f7938b0def0317 /rpython | |
parent | document the branch (diff) | |
download | pypy-c1e936d61a28d7243b8cdc646aa5bb873d4cb02b.tar.gz pypy-c1e936d61a28d7243b8cdc646aa5bb873d4cb02b.tar.bz2 pypy-c1e936d61a28d7243b8cdc646aa5bb873d4cb02b.zip |
rename this test, else it's ungreppable
Diffstat (limited to 'rpython')
-rw-r--r-- | rpython/rtyper/lltypesystem/test/test_ll2ctypes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpython/rtyper/lltypesystem/test/test_ll2ctypes.py b/rpython/rtyper/lltypesystem/test/test_ll2ctypes.py index 20dd440820..369e0603bb 100644 --- a/rpython/rtyper/lltypesystem/test/test_ll2ctypes.py +++ b/rpython/rtyper/lltypesystem/test/test_ll2ctypes.py @@ -480,7 +480,7 @@ class TestLL2Ctypes(object): assert res == 42 assert not ALLOCATED # detects memory leaks in the test - def test_funcptr_can_raise(self, monkeypatch): + def test_llhelper_can_raise(self, monkeypatch): class FooError(Exception): pass def dummy(n): |