We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e25ab6a commit ab382d0Copy full SHA for ab382d0
Lib/test/test_threading.py
@@ -1088,6 +1088,7 @@ def test_init_immutable_default_args(self):
1088
def _callback_spy(self, *args, **kwargs):
1089
self.callback_args.append((args[:], kwargs.copy()))
1090
self.callback_event.set()
1091
+ self.assertEqual(self.callback_event.is_set(), True)
1092
1093
def test_continuous_execution(self):
1094
timer1 = threading.Timer(0.01, self._callback_cont)
@@ -1108,6 +1109,7 @@ def test_continuous_execution(self):
1108
1109
def _callback_cont(self):
1110
self.callback_cnt -= 1
1111
1112
1113
return self.callback_cnt > 0
1114
1115
class LockTests(lock_tests.LockTests):
0 commit comments