Skip to content

Commit

Permalink
Fixed failing integration test.
Browse files Browse the repository at this point in the history
Apparently we don't mention ActiveState in the Python --version anymore.
  • Loading branch information
mitchell-as committed Sep 23, 2024
1 parent 58e1176 commit 7768e1b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/integration/prepare_int_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,9 @@ func (suite *PrepareIntegrationTestSuite) TestResetExecutors() {
cp = ts.Spawn("activate")
cp.Expect("Activated", e2e.RuntimeSourcingTimeoutOpt)
cp.SendLine("which python3")
cp.SendLine("python3 --version")
cp.SendLine("python3")
cp.Expect("ActiveState")
cp.SendLine("exit()") // exit from Python interpreter
cp.SendLine("exit")
cp.ExpectExitCode(0)

Expand Down

0 comments on commit 7768e1b

Please sign in to comment.