From d3a7258834f8b019fbd49cce6326a655bd753025 Mon Sep 17 00:00:00 2001 From: Pranay Singh Date: Tue, 11 Jan 2022 22:07:10 +0530 Subject: [PATCH] correcting some test failures Signed-off-by: Pranay Singh --- spec/unit/target_host/aix_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/unit/target_host/aix_spec.rb b/spec/unit/target_host/aix_spec.rb index 2766c7db9..3bd576c5f 100644 --- a/spec/unit/target_host/aix_spec.rb +++ b/spec/unit/target_host/aix_spec.rb @@ -39,10 +39,10 @@ context "#install_package" do context "run the correct pkg run command " do - let(:expected_command) { "installp -aXYgd chef-12.0.0-rc.0-1.powerpc.bff" } + let(:expected_command) { "installp -aXYgd chef-12.0.0-rc.0-1.powerpc.bff all" } it "should run the correct install command" do expect(subject).to receive(:run_command!).with expected_command - subject.install_package("/my/chef-12.0.0-rc.0-1.powerpc.bff") + subject.install_package("chef-12.0.0-rc.0-1.powerpc.bff") end