(original) (raw)
changeset: 85580:4b64166d5abb parent: 85578:cefb76baa331 parent: 85579:b6059bac8a9c user: Tim Peters tim@python.org date: Fri Sep 06 15:42:47 2013 -0500 files: Lib/test/test_set.py description: 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. diff -r cefb76baa331 -r 4b64166d5abb Lib/test/test_set.py --- a/Lib/test/test_set.py Fri Sep 06 21🔞25 2013 +0200 +++ b/Lib/test/test_set.py Fri Sep 06 15:42:47 2013 -0500 @@ -1672,7 +1672,7 @@ 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: /tim@python.org