From: Terry Jan Reedy Date: Mon, 26 Feb 2018 02:38:18 +0000 (-0500) Subject: Fix 'deecorator' typo in test/test_dataclasses (GH-5899) X-Git-Tag: v3.8.0a1~2160 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=973cae07d6ce7f5a93bd9cd3bcb724a96cfe14e9;p=python Fix 'deecorator' typo in test/test_dataclasses (GH-5899) --- diff --git a/Lib/test/test_dataclasses.py b/Lib/test/test_dataclasses.py index ea019ae847..582cb3459f 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'),