We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This was from unrelated code change:
_____________________________ test_interval_timer _____________________________ def test_interval_timer(): func = mock.Mock() timer = IntervalTimer(function=func, interval=0.1, args=(1,), kwargs={"a": "b"}) timer.start() time.sleep(0.25) try: > assert func.call_count == 2 E AssertionError: assert 1 == 2 E + where 1 = <Mock id='2848397612848'>.call_count tests\utils\threading_tests.py:46: AssertionError
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This was from unrelated code change:
The text was updated successfully, but these errors were encountered: