Skip to content

Commit

Permalink
Fix variable definition
Browse files Browse the repository at this point in the history
  • Loading branch information
Naatan committed Jun 10, 2024
1 parent 8f58573 commit 9dee9fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/runtime_int_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func (suite *RuntimeIntegrationTestSuite) TestInterruptSetup() {
suite.Require().NoError(err)

execPath := rt.ExecutorsPath(filepath.Join(ts.Dirs.Cache, runtime_helpers.DirNameFromProject(proj)))
pythonExe = filepath.Join(execPath, "python3"+osutils.ExeExtension)
pythonExe := filepath.Join(execPath, "python3"+osutils.ExeExtension)

cp = ts.SpawnCmd(pythonExe, "-c", `print(__import__('sys').version)`)
cp.Expect("3.8.8")
Expand Down

0 comments on commit 9dee9fd

Please sign in to comment.