We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cac781 commit 448c8e8Copy full SHA for 448c8e8
test/asynchronous/test_concurrency.py
@@ -50,5 +50,5 @@ async def test_concurrency(self):
50
concurrent_time = time.time() - start
51
52
percent_faster = (sequential_time - concurrent_time) / concurrent_time * 100
53
- # We expect the concurrent tasks to be at least 75% faster on all platforms as a conservative benchmark
54
- self.assertGreaterEqual(percent_faster, 75)
+ # We expect the concurrent tasks to be at least 50% faster on all platforms as a conservative benchmark
+ self.assertGreaterEqual(percent_faster, 50)
0 commit comments