Author: Wim Lavrijsen <wlavrij...@lbl.gov>
Branch: cling-support
Changeset: r85667:8ab8c51edb73
Date: 2016-07-12 09:52 -0700
http://bitbucket.org/pypy/pypy/changeset/8ab8c51edb73/

Log:    assertEqual -> assert

diff --git a/pypy/module/cppyy/test/test_stltypes.py 
b/pypy/module/cppyy/test/test_stltypes.py
--- a/pypy/module/cppyy/test/test_stltypes.py
+++ b/pypy/module/cppyy/test/test_stltypes.py
@@ -266,7 +266,7 @@
         stringy_class = cppyy.gbl.stringy_class
 
         t0 = "aap\0noot"
-        self.assertEqual(t0, "aap\0noot")
+        assert t0 == "aap\0noot"
 
         c, s = stringy_class(""), std.string(t0, len(t0))
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to