summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric V. Smith <ericvsmith@users.noreply.github.com>2018-01-29 00:18:55 (GMT)
committerGitHub <noreply@github.com>2018-01-29 00:18:55 (GMT)
commit7c99e931a90d468e8019a0409f16213b3aba7067 (patch)
tree4821c682a765492d14705f9c3634901757a52a1c
parent15ea3a6a320623328530e5d8da5b83c75766180b (diff)
downloadcpython-7c99e931a90d468e8019a0409f16213b3aba7067.zip
cpython-7c99e931a90d468e8019a0409f16213b3aba7067.tar.gz
cpython-7c99e931a90d468e8019a0409f16213b3aba7067.tar.bz2
Fix trivial typo in test_dataclasses.py. (GH-5398)
-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 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: