From a5293b4ff2c1b5446947b4986f98ecf5d52432d4 Mon Sep 17 00:00:00 2001 From: luzpaz Date: Sun, 5 Nov 2017 07:37:50 -0600 Subject: Fix miscellaneous typos (#4275) --- Lib/test/test_threading.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/test/test_threading.py') diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py index 6e1ae06f792..a4887af051e 100644 --- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -427,7 +427,7 @@ class ThreadTests(BaseTestCase): t.daemon = True self.assertIn('daemon', repr(t)) - def test_deamon_param(self): + def test_daemon_param(self): t = threading.Thread() self.assertFalse(t.daemon) t = threading.Thread(daemon=False) -- cgit v1.2.3