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 --git a/Lib/test/test_set.py b/Lib/test/test_set.py
index 8f86156..d02e427 100644
--- a/Lib/test/test_set.py
+++ b/Lib/test/test_set.py
@@ -1674,7 +1674,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: