Skip to content

Commit 41b16c0

Browse files
committed
pythongh-152434: Avoid Gecko export in async-aware test
1 parent 306d7a7 commit 41b16c0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_profiling/test_sampling_profiler/test_collectors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ def test_gecko_collector_async_aware(self):
711711
[MockAwaitedInfo(thread_id=100, awaited_by=[parent, child])],
712712
timestamps_us=[1000, 2000],
713713
)
714-
profile_data = export_gecko_profile(self, collector)
714+
profile_data = collector._build_profile()
715715

716716
self.assertEqual(len(profile_data["threads"]), 1)
717717
thread_data = profile_data["threads"][0]

0 commit comments

Comments
 (0)