diff options
-rwxr-xr-x | Lib/test/test_dataclasses.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_dataclasses.py b/Lib/test/test_dataclasses.py index 53281f9..736bc49 100755 --- a/Lib/test/test_dataclasses.py +++ b/Lib/test/test_dataclasses.py @@ -668,7 +668,7 @@ class TestCase(unittest.TestCase): with self.assertRaisesRegex(TypeError, 'unpack'): x, y, z = Point3D(4, 5, 6) - # Maka sure another class with the same field names isn't + # Make sure another class with the same field names isn't # equal. @dataclass class Point3Dv1: |