Commit ec785224 authored by Antoine Pitrou's avatar Antoine Pitrou

assertEquals is deprecated

parent 0fbe2265
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment