summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2014-04-26 17:55:59 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2014-04-26 17:55:59 (GMT)
commit807c9da951e8596e9b9c90e4406b7087a2cdef04 (patch)
tree4483a7170f8241eac76035f7ce7d028739920c86
parentd6a1b2ba950f54f6fc3bb060aa7be6fff12bb15f (diff)
downloadcpython-807c9da951e8596e9b9c90e4406b7087a2cdef04.zip
cpython-807c9da951e8596e9b9c90e4406b7087a2cdef04.tar.gz
cpython-807c9da951e8596e9b9c90e4406b7087a2cdef04.tar.bz2
Issue #18944: backport typo fix
-rw-r--r--Lib/test/test_set.py2
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: