From f93e8cd4a0d80ec6c989f07d6d6274e83fcf6223 Mon Sep 17 00:00:00 2001 From: Mikhail Efimov Date: Mon, 21 Oct 2024 19:29:08 +0300 Subject: [PATCH] gh-125038: More suitable name for test classes is provided --- Lib/test/test_generators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_generators.py b/Lib/test/test_generators.py index 4b091c54a4875f..bf2cb1160723b0 100644 --- a/Lib/test/test_generators.py +++ b/Lib/test/test_generators.py @@ -269,7 +269,7 @@ def loop(): loop() -class ModifyTest(unittest.TestCase): +class ModifyUnderlyingIterableTest(unittest.TestCase): iterables = [ range(0), range(20),