Skip to content

Commit f6e3fbd

Browse files
authored
1 parent 948fba6 commit f6e3fbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

devtools/inspector/tests/inspector_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def test_perf_data(self) -> None:
5555
perfData = PerfData(random_floats)
5656

5757
# Intentionally use a different way to calculate p50 from the implementation
58-
self.assertEqual(perfData.p50, statistics.median(random_floats))
58+
self.assertAlmostEqual(perfData.p50, statistics.median(random_floats))
5959

6060
def test_event_block_to_dataframe(self) -> None:
6161
eventBlock = EventBlock(name=EVENT_BLOCK_NAME, events=self._gen_random_events())

0 commit comments

Comments
 (0)