mirror of
https://github.com/python/cpython.git
synced 2025-11-01 06:01:29 +00:00
Fix trivial typo in test_dataclasses.py. (GH-5398)
This commit is contained in:
parent
15ea3a6a32
commit
7c99e931a9
1 changed files with 1 additions and 1 deletions
|
|
@ -668,7 +668,7 @@ class Date:
|
||||||
with self.assertRaisesRegex(TypeError, 'unpack'):
|
with self.assertRaisesRegex(TypeError, 'unpack'):
|
||||||
x, y, z = Point3D(4, 5, 6)
|
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.
|
# equal.
|
||||||
@dataclass
|
@dataclass
|
||||||
class Point3Dv1:
|
class Point3Dv1:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue