Get test working

This commit is contained in:
Rich Chiodo false 2024-05-01 10:57:14 -07:00
parent 6ceee0a85f
commit 43b7876ab3
2 changed files with 1 additions and 2 deletions

View file

@ -56,7 +56,6 @@ def test_set_next_statement(pyfile, run, target):
inner2_target = targets[0]["id"]
session.request("goto", {"threadId": stop.thread_id, "targetId": inner2_target})
session.wait_for_next_event("continued")
stop = session.wait_for_stop(
"goto", expected_frames=[some.dap.frame(code_to_debug, "inner2")]

View file

@ -11,7 +11,7 @@ from tests import code
from tests.patterns import some, _impl
id = some.int.in_range(0, 10000)
id = some.int.in_range(-10000, 10000)
"""Matches a DAP "id", assuming some reasonable range for an implementation that
generates those ids sequentially.
"""