diff options
author | Tim Peters <tim@python.org> | 2013-09-06 15:42:47 -0500 |
---|---|---|
committer | Tim Peters <tim@python.org> | 2013-09-06 15:42:47 -0500 |
commit | 19695896174dbd01edc7d4f681a87665cd36f7ed (patch) | |
tree | 4fd2596cb34d7c89ad34f0f180f044f2169953c5 | |
parent | d8630596c540acdcb7b6ad62bd4a89a28871ed95 (diff) | |
parent | 636e6fa5f6a0beaf9807c9643dc16a1b95cd31f5 (diff) | |
download | cpython-19695896174dbd01edc7d4f681a87665cd36f7ed.tar.gz |
Merge 3.3 into default.
Issue 18944: fix a 1-character typo in test_set.py.
The error caused test_inline_methods() to test much less than intended.
Caught (& fixed) by Armin Rigo.
-rw-r--r-- | 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 index f8c7180da5..13cefec1a9 100644 --- a/Lib/test/test_set.py +++ b/Lib/test/test_set.py @@ -1672,7 +1672,7 @@ class TestVariousIteratorArgs(unittest.TestCase): for meth in (s.union, s.intersection, s.difference, s.symmetric_difference, s.isdisjoint): for g in (G, I, Ig, L, R): expected = meth(data) - actual = meth(G(data)) + actual = meth(g(data)) if isinstance(expected, bool): self.assertEqual(actual, expected) else: |