summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2018-02-26 02:38:18 (GMT)
committerGitHub <noreply@github.com>2018-02-26 02:38:18 (GMT)
commit973cae07d6ce7f5a93bd9cd3bcb724a96cfe14e9 (patch)
treef1faca441160a42fde989bd0fb7c3164039f7bfb /Lib/test
parentdbf9cff48a4ad0fd58e1c623ce1f36c3dd3d5f38 (diff)
downloadcpython-973cae07d6ce7f5a93bd9cd3bcb724a96cfe14e9.zip
cpython-973cae07d6ce7f5a93bd9cd3bcb724a96cfe14e9.tar.gz
cpython-973cae07d6ce7f5a93bd9cd3bcb724a96cfe14e9.tar.bz2
Fix 'deecorator' typo in test/test_dataclasses (GH-5899)
Diffstat (limited to 'Lib/test')
-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 ea019ae..582cb34 100755
--- a/Lib/test/test_dataclasses.py
+++ b/Lib/test/test_dataclasses.py
@@ -2411,7 +2411,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'),