mirror of
https://github.com/python/cpython.git
synced 2025-10-11 09:23:31 +00:00
fix the description of bytes tests
This commit is contained in:
parent
a090823a05
commit
1226db4651
1 changed files with 1 additions and 1 deletions
|
@ -929,7 +929,7 @@ class TestBasicOpsString(TestBasicOps, unittest.TestCase):
|
||||||
|
|
||||||
class TestBasicOpsBytes(TestBasicOps, unittest.TestCase):
|
class TestBasicOpsBytes(TestBasicOps, unittest.TestCase):
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.case = "string set"
|
self.case = "bytes set"
|
||||||
self.values = [b"a", b"b", b"c"]
|
self.values = [b"a", b"b", b"c"]
|
||||||
self.set = set(self.values)
|
self.set = set(self.values)
|
||||||
self.dup = set(self.values)
|
self.dup = set(self.values)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue