diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-02 00:15:44 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-02 00:15:44 (GMT) |
commit | ec78522424a610e364b8a61da00496833fad70a8 (patch) | |
tree | e79924b6eefb84ad1c95c3f8bf29049f7e296179 /Lib/test | |
parent | 0fbe22655b26c894c7ed4277f35a94a23b350c97 (diff) | |
download | cpython-ec78522424a610e364b8a61da00496833fad70a8.zip cpython-ec78522424a610e364b8a61da00496833fad70a8.tar.gz cpython-ec78522424a610e364b8a61da00496833fad70a8.tar.bz2 |
assertEquals is deprecated
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_multiprocessing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py index d154fce..6f36c19 100644 --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -169,7 +169,7 @@ class _TestProcess(BaseTestCase): # By default uses the current process's daemon flag. proc0 = self.Process(target=self._test) - self.assertEquals(proc0.daemon, self.current_process().daemon) + self.assertEqual(proc0.daemon, self.current_process().daemon) proc1 = self.Process(target=self._test, daemon=True) self.assertTrue(proc1.daemon) proc2 = self.Process(target=self._test, daemon=False) |