From 7c99e931a90d468e8019a0409f16213b3aba7067 Mon Sep 17 00:00:00 2001 From: "Eric V. Smith" Date: Sun, 28 Jan 2018 19:18:55 -0500 Subject: [PATCH] Fix trivial typo in test_dataclasses.py. (GH-5398) --- Lib/test/test_dataclasses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_dataclasses.py b/Lib/test/test_dataclasses.py index 53281f9dd9d..736bc490867 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: