summaryrefslogtreecommitdiff
path: root/Lib/test/test_dataclasses.py
diff options
context:
space:
mode:
authorEric V. Smith <ericvsmith@users.noreply.github.com>2018-01-28 19:18:55 -0500
committerGitHub <noreply@github.com>2018-01-28 19:18:55 -0500
commit7c99e931a90d468e8019a0409f16213b3aba7067 (patch)
tree4821c682a765492d14705f9c3634901757a52a1c /Lib/test/test_dataclasses.py
parent15ea3a6a320623328530e5d8da5b83c75766180b (diff)
downloadcpython-git-7c99e931a90d468e8019a0409f16213b3aba7067.tar.gz
Fix trivial typo in test_dataclasses.py. (GH-5398)
Diffstat (limited to 'Lib/test/test_dataclasses.py')
-rwxr-xr-xLib/test/test_dataclasses.py2
1 files changed, 1 insertions, 1 deletions
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: