diff options
Diffstat (limited to 'Lib/test/test_math.py')
-rw-r--r-- | Lib/test/test_math.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py index 70cb574..44785d3 100644 --- a/Lib/test/test_math.py +++ b/Lib/test/test_math.py @@ -1423,7 +1423,7 @@ class MathTests(unittest.TestCase): class IsCloseTests(unittest.TestCase): - isclose = math.isclose # sublcasses should override this + isclose = math.isclose # subclasses should override this def assertIsClose(self, a, b, *args, **kwargs): self.assertTrue(self.isclose(a, b, *args, **kwargs), |