Skip to content

Commit 3f3b539

Browse files
e2e Test: Fix override on web (#7249)
### Intent Fix a failure on web override test. Made the settings change into 1 line. ### QA Notes @:interpreter @:web <!-- Add additional information for QA on how to validate the change, paying special attention to the level of risk, adjacent areas that could be affected by the change, and any important contextual information not present in the linked issues. -->
1 parent 6d52231 commit 3f3b539

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/e2e/tests/interpreters/includes-excludes.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ test.describe('Interpreter: Override', {
105105
}, () => {
106106

107107
test.beforeAll(async function ({ userSettings }) {
108-
await userSettings.set([['python.interpreters.override', '["/home/runner/scratch/python-env"]']], true);
109-
await userSettings.set([['positron.r.interpreters.override', '["/opt/R/4.4.2/bin/R"]']], true);
108+
await userSettings.set([['python.interpreters.override', '["/home/runner/scratch/python-env"]'],
109+
['positron.r.interpreters.override', '["/opt/R/4.4.2/bin/R"]']], true);
110110
});
111111

112112
test('R - Can Override Interpreter Discovery', async function ({ app, sessions }) {

0 commit comments

Comments
 (0)