From 4c271fe85c34dca1bbfcbb206f8d5ad4c70991b4 Mon Sep 17 00:00:00 2001 From: Walter Dörwald Date: Thu, 7 Jun 2007 13:52:37 +0000 Subject: Fix test_str.py so that it tests the str8 class. Fix string_tests.py::MixinStrUnicodeTest.test_bug1001011(): Test str and str8. --- Lib/test/string_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/test/string_tests.py') diff --git a/Lib/test/string_tests.py b/Lib/test/string_tests.py index 53a3ddb68c1..d5a9a293168 100644 --- a/Lib/test/string_tests.py +++ b/Lib/test/string_tests.py @@ -1154,7 +1154,7 @@ class MixinStrUnicodeTest: s2 = "".join([s1]) self.assert_(s1 is s2) - elif t is str: + elif t is str8: s1 = subclass("abcd") s2 = "".join([s1]) self.assert_(s1 is not s2) -- cgit v1.2.3