From: Eric V. Smith Date: Mon, 29 Jan 2018 00:18:55 +0000 (-0500) Subject: Fix trivial typo in test_dataclasses.py. (GH-5398) X-Git-Tag: v3.7.0b1~49 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7c99e931a90d468e8019a0409f16213b3aba7067;p=python Fix trivial typo in test_dataclasses.py. (GH-5398) --- diff --git a/Lib/test/test_dataclasses.py b/Lib/test/test_dataclasses.py index 53281f9dd9..736bc49086 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: