From 973cae07d6ce7f5a93bd9cd3bcb724a96cfe14e9 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Sun, 25 Feb 2018 21:38:18 -0500 Subject: [PATCH] Fix 'deecorator' typo in test/test_dataclasses (GH-5899) --- 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 ea019ae847b..582cb3459f5 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'),