[Python-checkins] cpython: fix the description of bytes tests

philip.jenvey python-checkins at python.org
Fri Apr 18 20:11:04 CEST 2014


http://hg.python.org/cpython/rev/1adcc23de886
changeset:   90403:1adcc23de886
user:        Philip Jenvey <pjenvey at underboss.org>
date:        Fri Apr 18 11:10:50 2014 -0700
summary:
  fix the description of bytes tests

files:
  Lib/test/test_set.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_set.py b/Lib/test/test_set.py
--- a/Lib/test/test_set.py
+++ b/Lib/test/test_set.py
@@ -929,7 +929,7 @@
 
 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)

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list