summaryrefslogtreecommitdiff
path: root/Lib/test/test_dataclasses.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-02-25 19:09:05 -0800
committerGitHub <noreply@github.com>2018-02-25 19:09:05 -0800
commit1a5790689f134881d8e7cc8b1ac45121468823c6 (patch)
treecc18dc24632854fafb6d1270b0c313d50a7813b8 /Lib/test/test_dataclasses.py
parent139e64694f546982a8cc801dda30670abadb8d06 (diff)
downloadcpython-git-1a5790689f134881d8e7cc8b1ac45121468823c6.tar.gz
Fix 'deecorator' typo in test/test_dataclasses (GH-5899)
(cherry picked from commit 973cae07d6ce7f5a93bd9cd3bcb724a96cfe14e9) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
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 9752f5502c..c24af7fc79 100755
--- a/Lib/test/test_dataclasses.py
+++ b/Lib/test/test_dataclasses.py
@@ -2403,7 +2403,7 @@ class TestHash(unittest.TestCase):
return 301
# If frozen or eq is None, then use the default value (do not
- # specify any value in the deecorator).
+ # specify any value in the decorator).
for frozen, eq, base, expected in [
(None, None, object, 'unhashable'),
(None, None, Base, 'unhashable'),