Skip to content

Commit

Permalink
Merge pull request #3472 from ActiveState/mitchell/dx-2976
Browse files Browse the repository at this point in the history
Fixed macOS init integration test to infer language from a non-Camel project.
  • Loading branch information
mitchell-as authored Sep 3, 2024
2 parents bed566e + ae4a281 commit 79a95ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/init_int_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,11 @@ func (suite *InitIntegrationTestSuite) TestInit_InferLanguageFromUse() {
cp := ts.Spawn("config", "set", constants.AsyncRuntimeConfig, "true")
cp.ExpectExitCode(0)

cp = ts.Spawn("checkout", "ActiveState-CLI/Python3")
cp = ts.Spawn("checkout", "ActiveState-CLI/small-python")
cp.Expect("Checked out project")
cp.ExpectExitCode(0)

cp = ts.Spawn("use", "Python3")
cp = ts.Spawn("use", "small-python")
cp.Expect("Switched to project", e2e.RuntimeSourcingTimeoutOpt)
cp.ExpectExitCode(0)

Expand Down

0 comments on commit 79a95ce

Please sign in to comment.