diff options
author | Eric V. Smith <ericvsmith@users.noreply.github.com> | 2018-01-29 00:18:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-29 00:18:55 (GMT) |
commit | 7c99e931a90d468e8019a0409f16213b3aba7067 (patch) | |
tree | 4821c682a765492d14705f9c3634901757a52a1c | |
parent | 15ea3a6a320623328530e5d8da5b83c75766180b (diff) | |
download | cpython-7c99e931a90d468e8019a0409f16213b3aba7067.zip cpython-7c99e931a90d468e8019a0409f16213b3aba7067.tar.gz cpython-7c99e931a90d468e8019a0409f16213b3aba7067.tar.bz2 |
Fix trivial typo in test_dataclasses.py. (GH-5398)
-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: |