diff options
author | Armin Rigo <arigo@tunes.org> | 2020-08-15 21:57:43 +0200 |
---|---|---|
committer | Armin Rigo <arigo@tunes.org> | 2020-08-15 21:57:43 +0200 |
commit | 6911c63b9c5ac80506f81c56acfbe268a513da31 (patch) | |
tree | 554718c1a416b680400154ca270e1da9176594de /extra_tests/cffi_tests | |
parent | typo (diff) | |
download | pypy-6911c63b9c5ac80506f81c56acfbe268a513da31.tar.gz pypy-6911c63b9c5ac80506f81c56acfbe268a513da31.tar.bz2 pypy-6911c63b9c5ac80506f81c56acfbe268a513da31.zip |
update to cffi 1.14.2
Diffstat (limited to 'extra_tests/cffi_tests')
-rw-r--r-- | extra_tests/cffi_tests/cffi1/test_recompiler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extra_tests/cffi_tests/cffi1/test_recompiler.py b/extra_tests/cffi_tests/cffi1/test_recompiler.py index 32afbd591c..7684e5419b 100644 --- a/extra_tests/cffi_tests/cffi1/test_recompiler.py +++ b/extra_tests/cffi_tests/cffi1/test_recompiler.py @@ -890,8 +890,8 @@ def test_unpack_args(): e7 = py.test.raises(TypeError, lib.foo2, 45, 46, 47) def st1(s): s = str(s) - if s.startswith("_CFFI_test_unpack_args.CompiledLib."): - s = s[len("_CFFI_test_unpack_args.CompiledLib."):] + if s.startswith("_CFFI_test_unpack_args.Lib."): + s = s[len("_CFFI_test_unpack_args.Lib."):] return s assert st1(e1.value) == "foo0() takes no arguments (1 given)" assert st1(e2.value) == "foo0() takes no arguments (2 given)" |