Fix trivial typo in test_dataclasses.py. (GH-5398)

This commit is contained in:
Eric V. Smith 2018-01-28 19:18:55 -05:00 committed by GitHub
parent 15ea3a6a32
commit 7c99e931a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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: