From: Philip Jenvey Date: Fri, 18 Apr 2014 18:10:50 +0000 (-0700) Subject: fix the description of bytes tests X-Git-Tag: v3.5.0a1~1823 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1226db46517f21cba52bd3efe8b206ddaefd7504;p=thirdparty%2FPython%2Fcpython.git fix the description of bytes tests --- diff --git a/Lib/test/test_set.py b/Lib/test/test_set.py index bfef6210939d..992a4ceda0d6 100644 --- a/Lib/test/test_set.py +++ b/Lib/test/test_set.py @@ -929,7 +929,7 @@ class TestBasicOpsString(TestBasicOps, unittest.TestCase): class TestBasicOpsBytes(TestBasicOps, unittest.TestCase): def setUp(self): - self.case = "string set" + self.case = "bytes set" self.values = [b"a", b"b", b"c"] self.set = set(self.values) self.dup = set(self.values)