diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-04-26 17:55:59 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-04-26 17:55:59 (GMT) |
commit | 807c9da951e8596e9b9c90e4406b7087a2cdef04 (patch) | |
tree | 4483a7170f8241eac76035f7ce7d028739920c86 | |
parent | d6a1b2ba950f54f6fc3bb060aa7be6fff12bb15f (diff) | |
download | cpython-807c9da951e8596e9b9c90e4406b7087a2cdef04.zip cpython-807c9da951e8596e9b9c90e4406b7087a2cdef04.tar.gz cpython-807c9da951e8596e9b9c90e4406b7087a2cdef04.tar.bz2 |
Issue #18944: backport typo fix
-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 9db7394..82a08fe 100644 --- a/Lib/test/test_set.py +++ b/Lib/test/test_set.py @@ -1615,7 +1615,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: |