summaryrefslogtreecommitdiff
path: root/Lib/test/test_string.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_string.py')
-rw-r--r--Lib/test/test_string.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/test_string.py b/Lib/test/test_string.py
index 48677e045b..0d07b91394 100644
--- a/Lib/test/test_string.py
+++ b/Lib/test/test_string.py
@@ -176,7 +176,7 @@ class ModuleTest(unittest.TestCase):
# test all parameters used
class CheckAllUsedFormatter(string.Formatter):
def check_unused_args(self, used_args, args, kwargs):
- # Track which arguments actuallly got used
+ # Track which arguments actually got used
unused_args = set(kwargs.keys())
unused_args.update(range(0, len(args)))
@@ -202,13 +202,13 @@ class ModuleTest(unittest.TestCase):
class BytesAliasTest(unittest.TestCase):
def test_builtin(self):
- self.assert_(str is bytes)
+ self.assertTrue(str is bytes)
def test_syntax(self):
self.assertEqual(b"spam", "spam")
self.assertEqual(br"egg\foo", "egg\\foo")
- self.assert_(type(b""), str)
- self.assert_(type(br""), str)
+ self.assertTrue(type(b""), str)
+ self.assertTrue(type(br""), str)
def test_main():
test_support.run_unittest(StringTest, ModuleTest, BytesAliasTest)