From 1a5790689f134881d8e7cc8b1ac45121468823c6 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Sun, 25 Feb 2018 19:09:05 -0800 Subject: [PATCH] Fix 'deecorator' typo in test/test_dataclasses (GH-5899) (cherry picked from commit 973cae07d6ce7f5a93bd9cd3bcb724a96cfe14e9) Co-authored-by: Terry Jan Reedy --- Lib/test/test_dataclasses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'), -- 2.50.1