summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_dataclasses.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-10-09 19:50:45 (GMT)
committerGitHub <noreply@github.com>2021-10-09 19:50:45 (GMT)
commite086bfee035eb23397f3cddba07b767b35d7ec08 (patch)
treedfb5e8171df5f45a950bd4d329df642ba8a83cbe /Lib/test/test_dataclasses.py
parentc80f0b7aa1d90332d0069d3e85ee112d0c9da7f0 (diff)
downloadcpython-e086bfee035eb23397f3cddba07b767b35d7ec08.zip
cpython-e086bfee035eb23397f3cddba07b767b35d7ec08.tar.gz
cpython-e086bfee035eb23397f3cddba07b767b35d7ec08.tar.bz2
Fix dataclassses spelling (GH-28837) (GH-28841)
(cherry picked from commit 5b4a7675bcfc6368aff955f4a6231579718f5dad) Co-authored-by: Landon Yarrington <33426811+jly36963@users.noreply.github.com> Co-authored-by: Landon Yarrington <33426811+jly36963@users.noreply.github.com>
Diffstat (limited to 'Lib/test/test_dataclasses.py')
-rw-r--r--Lib/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 a1d9112..bdcb4a2 100644
--- a/Lib/test/test_dataclasses.py
+++ b/Lib/test/test_dataclasses.py
@@ -1907,7 +1907,7 @@ class TestCase(unittest.TestCase):
# Check MRO resolution.
self.assertEqual(Child.__mro__, (Child, Parent, Generic, object))
- def test_dataclassses_pickleable(self):
+ def test_dataclasses_pickleable(self):
global P, Q, R
@dataclass
class P: