Author: Armin Rigo <ar...@tunes.org>
Branch: py3.5
Changeset: r93514:1dd2914caff4
Date: 2017-12-20 14:31 +0100
http://bitbucket.org/pypy/pypy/changeset/1dd2914caff4/

Log:    fix test

diff --git a/pypy/module/imp/test/test_import.py 
b/pypy/module/imp/test/test_import.py
--- a/pypy/module/imp/test/test_import.py
+++ b/pypy/module/imp/test/test_import.py
@@ -769,9 +769,9 @@
 
 class TestAbi:
     def test_abi_tag(self):
-        space1 = maketestobjspace(make_config(None, soabi='TEST'))
+        space1 = maketestobjspace(make_config(None, soabi='footest'))
         space2 = maketestobjspace(make_config(None, soabi=''))
-        assert importing.get_so_extension(space1).startswith('.TEST')
+        assert importing.get_so_extension(space1).startswith('.footest')
         if sys.platform == 'win32':
             assert importing.get_so_extension(space2) == '.pyd'
         else:
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to