]> granicus.if.org Git - python/commitdiff
Fix trivial typo in test_dataclasses.py. (GH-5398)
authorEric V. Smith <ericvsmith@users.noreply.github.com>
Mon, 29 Jan 2018 00:18:55 +0000 (19:18 -0500)
committerGitHub <noreply@github.com>
Mon, 29 Jan 2018 00:18:55 +0000 (19:18 -0500)
Lib/test/test_dataclasses.py

index 53281f9dd9de00ad6cad92cee808291653831016..736bc490867b0c01a9cd4e56429c8d44258d8f5d 100755 (executable)
@@ -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: