Skip to content

Commit 8668fb2

Browse files
committed
test installing python 3.7.16
1 parent 953ebf8 commit 8668fb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

__tests__/environment_manager.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ describe('EnvironmentManager', () => {
5353

5454
// And I call ensure_script_exists_with_command()
5555
const script_path = await environment.ensure_script_exists_with_command(
56-
'3.7.3'
56+
'3.7.16'
5757
);
5858

5959
// Then it should return the path to the script
@@ -62,7 +62,7 @@ describe('EnvironmentManager', () => {
6262

6363
// And it should be a bash script
6464
expect(fs.readFileSync(script_path).toString()).toEqual(
65-
'#!/bin/bash\n# auto-generated by gabrielfalcao/pyenv-action\n\n# set python version within this script\nexport PYENV_VERSION="3.7.3";\n\nset -ex;\n# run user-provided command:\necho $HOME;'
65+
'#!/bin/bash\n# auto-generated by gabrielfalcao/pyenv-action\n\n# set python version within this script\nexport PYENV_VERSION="3.7.16";\n\nset -ex;\n# run user-provided command:\necho $HOME;'
6666
);
6767
});
6868
});

0 commit comments

Comments
 (0)