diff options
author | Daniel Fortunov <asqui@users.noreply.github.com> | 2023-05-23 14:11:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-23 14:11:29 (GMT) |
commit | ddb14859535ab8091381b9d0baf32dbe245b5e65 (patch) | |
tree | 6ae7e1097013aab5e37ad69d7c45413fbd37d15a /Lib/test/test_builtin.py | |
parent | 76170f545870db93b6c45cae09ff34b18639ee97 (diff) | |
download | cpython-ddb14859535ab8091381b9d0baf32dbe245b5e65.zip cpython-ddb14859535ab8091381b9d0baf32dbe245b5e65.tar.gz cpython-ddb14859535ab8091381b9d0baf32dbe245b5e65.tar.bz2 |
gh-81005: Refactor str tests to reflect that str and unicode are merged in Python 3 (#13172)
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Diffstat (limited to 'Lib/test/test_builtin.py')
-rw-r--r-- | Lib/test/test_builtin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_builtin.py b/Lib/test/test_builtin.py index 1257b52..f5a5c03 100644 --- a/Lib/test/test_builtin.py +++ b/Lib/test/test_builtin.py @@ -1614,7 +1614,7 @@ class BuiltinTest(unittest.TestCase): msg = r"^attribute name must be string, not 'int'$" self.assertRaisesRegex(TypeError, msg, setattr, sys, 1, 'spam') - # test_str(): see test_unicode.py and test_bytes.py for str() tests. + # test_str(): see test_str.py and test_bytes.py for str() tests. def test_sum(self): self.assertEqual(sum([]), 0) |