From ae4a281c76788a9491e6fd681308849edae224a6 Mon Sep 17 00:00:00 2001 From: mitchell Date: Tue, 3 Sep 2024 12:02:35 -0400 Subject: [PATCH] Fixed macOS init integration test to infer language from a non-Camel project. --- test/integration/init_int_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/init_int_test.go b/test/integration/init_int_test.go index 61ff75ed21..cfbf5ae830 100644 --- a/test/integration/init_int_test.go +++ b/test/integration/init_int_test.go @@ -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)