We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 942d821 commit bd9aefeCopy full SHA for bd9aefe
1 file changed
Lib/test/test_profiling/test_sampling_profiler/test_collectors.py
@@ -2633,8 +2633,6 @@ def test_jsonl_collector_filters_internal_frames(self):
2633
jsonl_out = tempfile.NamedTemporaryFile(delete=False)
2634
self.addCleanup(close_and_unlink, jsonl_out)
2635
2636
- collector = JsonlCollector(sample_interval_usec=1000)
2637
-
2638
frames = [
2639
MockInterpreterInfo(
2640
0,
@@ -2652,6 +2650,7 @@ def test_jsonl_collector_filters_internal_frames(self):
2652
2650
)
2653
2651
]
2654
+ collector = JsonlCollector(sample_interval_usec=1000)
2655
collector.collect(frames)
2656
collector.export(jsonl_out.name)
2657
0 commit comments