From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 26 Feb 2018 03:09:05 +0000 (-0800) Subject: Fix 'deecorator' typo in test/test_dataclasses (GH-5899) X-Git-Tag: v3.7.0b2~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1a5790689f134881d8e7cc8b1ac45121468823c6;p=python Fix 'deecorator' typo in test/test_dataclasses (GH-5899) (cherry picked from commit 973cae07d6ce7f5a93bd9cd3bcb724a96cfe14e9) Co-authored-by: Terry Jan Reedy --- 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'),