Commit 807c9da9 authored by Terry Jan Reedy's avatar Terry Jan Reedy

Issue #18944: backport typo fix

parent d6a1b2ba
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment