Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Bump the expected frames
  • Loading branch information
pablogsal committed Dec 2, 2025
commit 5ba13c561d741d82ec729fb85781d7d63f5e1ac7
4 changes: 2 additions & 2 deletions Lib/test/test_external_inspection.py
Original file line number Diff line number Diff line change
Expand Up @@ -2655,11 +2655,11 @@ def recurse(n):
unwinder_no_cache = make_unwinder(cache_frames=False)

frames_cached = self._sample_frames(
client_socket, unwinder_cache, b"ready", b"ack", {"recurse"}, 1024
client_socket, unwinder_cache, b"ready", b"ack", {"recurse"}, 1100
)
# Sample again with no cache for comparison
frames_no_cache = self._sample_frames(
client_socket, unwinder_no_cache, b"ready2", b"done", {"recurse"}, 1024
client_socket, unwinder_no_cache, b"ready2", b"done", {"recurse"}, 1100
)

self.assertIsNotNone(frames_cached)
Expand Down
Loading