summaryrefslogtreecommitdiff
path: root/spec/services/clusters/applications/install_service_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/services/clusters/applications/install_service_spec.rb')
-rw-r--r--spec/services/clusters/applications/install_service_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/services/clusters/applications/install_service_spec.rb b/spec/services/clusters/applications/install_service_spec.rb
index 408f7e4354e..054a49ffedf 100644
--- a/spec/services/clusters/applications/install_service_spec.rb
+++ b/spec/services/clusters/applications/install_service_spec.rb
@@ -12,7 +12,7 @@ describe Clusters::Applications::InstallService do
context 'when there are no errors' do
before do
- expect(helm_client).to receive(:install).with(application)
+ expect(helm_client).to receive(:install).with(application.install_command)
allow(ClusterWaitForAppInstallationWorker).to receive(:perform_in).and_return(nil)
end
@@ -33,7 +33,7 @@ describe Clusters::Applications::InstallService do
context 'when k8s cluster communication fails' do
before do
error = KubeException.new(500, 'system failure', nil)
- expect(helm_client).to receive(:install).with(application).and_raise(error)
+ expect(helm_client).to receive(:install).with(application.install_command).and_raise(error)
end
it 'make the application errored' do