mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Move test_bug1001011() to string_tests.MixinStrUnicodeTest so that
it can be used for str and unicode. Drop the test for "".join([s]) is s because this is an implementation detail (and doesn't work for unicode)
This commit is contained in:
parent
592ef6110f
commit
57d88e5abd
4 changed files with 23 additions and 24 deletions
|
@ -5,7 +5,8 @@ from test import test_support, string_tests
|
|||
class StrTest(
|
||||
string_tests.CommonTest,
|
||||
string_tests.MixinStrUnicodeUserStringTest,
|
||||
string_tests.MixinStrUserStringTest
|
||||
string_tests.MixinStrUserStringTest,
|
||||
string_tests.MixinStrUnicodeTest,
|
||||
):
|
||||
|
||||
type2test = str
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue