From 807c9da951e8596e9b9c90e4406b7087a2cdef04 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Sat, 26 Apr 2014 13:55:59 -0400 Subject: [PATCH] Issue #18944: backport typo fix --- Lib/test/test_set.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_set.py b/Lib/test/test_set.py index 9db7394c1e..82a08fec0b 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: -- 2.50.1