You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sdk: make test_batch_span_processor_scheduled_delay a bit more robust
It happened that tests failed because the delay was fired some
microseconds earlier:
> self.assertGreaterEqual((export_time - start_time) * 1e3, 500)
E AssertionError: 499.9737739562988 not greater than or equal to 500
Use assertAlmostEqual to accept a similar enough value (places=0) and
avoid too big values.
Fix#3911
0 commit comments