Skip to content

Commit d77a62b

Browse files
committed
increase timeouts
1 parent 9d21ad4 commit d77a62b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/test/debugger/misc.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ let testCounter = 0;
458458
});
459459
console.log('step2');
460460
const pythonFile = path.join(debugFilesPath, 'multiThread.py');
461-
const breakpointLocation = { path: pythonFile, column: 1, line: 15 };
461+
const breakpointLocation = { path: pythonFile, column: 1, line: 16 };
462462
await debugClient.setBreakpointsRequest({
463463
lines: [breakpointLocation.line],
464464
breakpoints: [{ line: breakpointLocation.line, column: breakpointLocation.column }],

src/test/pythonFiles/debugging/multiThread.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ def bar():
1111

1212
def foo(x):
1313
while True:
14+
print('step2-{}'.format(threading.current_thread().getName()))
1415
print("step2-while-loop")
1516
bar()
1617
print("step3")

0 commit comments

Comments
 (0)