From e2d42922103c603b24b45d7911a6f88bc7e58fe5 Mon Sep 17 00:00:00 2001 From: donoghuc Date: Mon, 20 May 2024 15:16:47 -0700 Subject: [PATCH] (maint) Fix bug in plan_spec integration test Previously the `target` argument was not being properly resolved in the argument array resulting in the literal string `#{target}` being used instead of the resolved value. !no-release-note --- spec/integration/plan_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/integration/plan_spec.rb b/spec/integration/plan_spec.rb index dc66c5ff26..c450866935 100644 --- a/spec/integration/plan_spec.rb +++ b/spec/integration/plan_spec.rb @@ -113,7 +113,7 @@ it "prints the spinner when running executor functions", ssh: true do expect_any_instance_of(Bolt::Outputter::Human).to receive(:start_spin).at_least(:once) - run_cli(%w[plan run sample::noop --targets #{target}] + config_flags, **opts) + run_cli(%W[plan run sample::noop --targets #{target}] + config_flags, **opts) end it "doesn't print the spinner when running non-executor functions", ssh: true do