[pypy-commit] pypy py3.5: fix test

arigo pypy.commits at gmail.com
Sat Oct 15 05:00:25 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: py3.5
Changeset: r87800:196cb232506e
Date: 2016-10-15 10:59 +0200
http://bitbucket.org/pypy/pypy/changeset/196cb232506e/

Log:	fix test

diff --git a/pypy/interpreter/test/test_interpreter.py b/pypy/interpreter/test/test_interpreter.py
--- a/pypy/interpreter/test/test_interpreter.py
+++ b/pypy/interpreter/test/test_interpreter.py
@@ -346,7 +346,7 @@
         assert "keywords must be strings" in resg3
         resg4 = self.codetest(code, 'g4', [])
         assert "TypeError:" in resg4
-        assert "f() got multiple values for keyword argument 'a'" in resg4
+        assert "got multiple values for keyword argument 'a'" in resg4
 
 
 class AppTestInterpreter: 


More information about the pypy-commit mailing list