Skip to content

Commit fa69fda

Browse files
authored
Fix POSITRON_PY_VER_SEL naming in error message (#6750)
`POSITRON_PYTHON_VER_SEL` was wrong
1 parent 5d567f3 commit fa69fda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/e2e/infra/fixtures/interpreter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export class Interpreter {
4141
*/
4242
startInterpreterViaQuickAccess = async (interpreterType: 'Python' | 'R', waitForReady = true) => {
4343
if (!DESIRED_PYTHON || !DESIRED_R) {
44-
throw new Error('Please set env vars: POSITRON_PYTHON_VER_SEL, POSITRON_R_VER_SEL');
44+
throw new Error('Please set env vars: POSITRON_PY_VER_SEL, POSITRON_R_VER_SEL');
4545
}
4646

4747
await test.step(`Select interpreter via Quick Access: ${interpreterType}`, async () => {
@@ -63,7 +63,7 @@ export class Interpreter {
6363
waitForReady = true
6464
) {
6565
if (!DESIRED_PYTHON || !DESIRED_R) {
66-
throw new Error('Please set env vars: POSITRON_PYTHON_VER_SEL, POSITRON_R_VER_SEL');
66+
throw new Error('Please set env vars: POSITRON_PY_VER_SEL, POSITRON_R_VER_SEL');
6767
}
6868

6969
await test.step(`Select interpreter via UI: ${interpreterDescription}`, async () => {

0 commit comments

Comments
 (0)