Skip to content

Commit 0fc1fd2

Browse files
committed
Fix tests
1 parent 8b2e2ef commit 0fc1fd2

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

‎src/test/terminals/shellIntegration/pythonStartup.test.ts‎

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,12 +248,14 @@ suite('Terminal - Shell Integration with PYTHONSTARTUP', () => {
248248
);
249249
assert.equal(
250250
links[0].startIndex,
251-
context.line.indexOf('Ctrl click to launch VS Code Native REPL'),
251+
context.line.indexOf(
252+
'Ctrl click to launch VS Code Native REPL (https://aka.ms/python-native-repl)',
253+
),
252254
'start index should match',
253255
);
254256
assert.equal(
255257
links[0].length,
256-
'Ctrl click to launch VS Code Native REPL'.length,
258+
'Ctrl click to launch VS Code Native REPL (https://aka.ms/python-native-repl)'.length,
257259
'Match expected Length',
258260
);
259261
assert.equal(

0 commit comments

Comments
 (0)