We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86be8a6 commit 2e6fe14Copy full SHA for 2e6fe14
opentelemetry-sdk/tests/trace/export/test_export.py
@@ -483,7 +483,7 @@ def test_batch_span_processor_scheduled_delay(self):
483
export_time = time.time()
484
self.assertEqual(len(spans_names_list), 1)
485
# call round to avoid flaky tests on pypy with delays ending some microseconds earlier
486
- self.assertGreaterEqual(round(export_time - start_time) * 1e3, 500)
+ self.assertGreaterEqual(round((export_time - start_time) * 1e3), 500)
487
488
span_processor.shutdown()
489
0 commit comments