]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-33723: Fix test_time.test_process_time() (GH-8358)
authorVictor Stinner <vstinner@redhat.com>
Sat, 21 Jul 2018 01:31:51 +0000 (03:31 +0200)
committerGitHub <noreply@github.com>
Sat, 21 Jul 2018 01:31:51 +0000 (03:31 +0200)
commite78dace8dcb23c371df19c9add65895adf436995
tree10de92edabad6e6c0e1af4078db2ee8718a6aeaf
parentb1147e43daeb3c51a63056b489e8d868404d4e22
bpo-33723: Fix test_time.test_process_time() (GH-8358)

The test failed on my laptop because the busy loop took 15.9 ms
whereas the test expects at least 20 ms. Modify test_process_time()
as test_thread_time() has been modified recently: only require 15 ms
instead of 20 ms.
Lib/test/test_time.py