summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_set.py
diff options
context:
space:
mode:
authorPhilip Jenvey <pjenvey@underboss.org>2014-04-18 18:10:50 (GMT)
committerPhilip Jenvey <pjenvey@underboss.org>2014-04-18 18:10:50 (GMT)
commit1226db46517f21cba52bd3efe8b206ddaefd7504 (patch)
tree31f1927b39729a2d05a7dba442913957ac740f2a /Lib/test/test_set.py
parenta090823a05c13fdb0cbf90ed2db13e473d01b130 (diff)
downloadcpython-1226db46517f21cba52bd3efe8b206ddaefd7504.zip
cpython-1226db46517f21cba52bd3efe8b206ddaefd7504.tar.gz
cpython-1226db46517f21cba52bd3efe8b206ddaefd7504.tar.bz2
fix the description of bytes tests
Diffstat (limited to 'Lib/test/test_set.py')
-rw-r--r--Lib/test/test_set.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_set.py b/Lib/test/test_set.py
index bfef621..992a4ce 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)