summaryrefslogtreecommitdiff
path: root/spec/models/clusters/applications
diff options
context:
space:
mode:
authorChris Baumbauer <cab@cabnetworks.net>2018-12-11 15:03:31 -0800
committerChris Baumbauer <cab@cabnetworks.net>2018-12-11 15:03:31 -0800
commit1d241206b59ee9c7160642e1cb3672c4e4375945 (patch)
tree4a4beb58d31c4203f784cf65020f02f73ee29b20 /spec/models/clusters/applications
parent185f8a5da6b4bd6090aa41e5f39ad0381200ee84 (diff)
downloadgitlab-ce-1d241206b59ee9c7160642e1cb3672c4e4375945.tar.gz
Upgrade Knative from 0.1.3 to 0.2.2
Diffstat (limited to 'spec/models/clusters/applications')
-rw-r--r--spec/models/clusters/applications/knative_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/models/clusters/applications/knative_spec.rb b/spec/models/clusters/applications/knative_spec.rb
index a1579b90436..809880f5969 100644
--- a/spec/models/clusters/applications/knative_spec.rb
+++ b/spec/models/clusters/applications/knative_spec.rb
@@ -33,10 +33,10 @@ describe Clusters::Applications::Knative do
end
context 'application install previously errored with older version' do
- let(:application) { create(:clusters_applications_knative, :scheduled, version: '0.1.3') }
+ let(:application) { create(:clusters_applications_knative, :scheduled, version: '0.2.2') }
it 'updates the application version' do
- expect(application.reload.version).to eq('0.1.3')
+ expect(application.reload.version).to eq('0.2.2')
end
end
end
@@ -105,7 +105,7 @@ describe Clusters::Applications::Knative do
it 'should be initialized with knative arguments' do
expect(subject.name).to eq('knative')
expect(subject.chart).to eq('knative/knative')
- expect(subject.version).to eq('0.1.3')
+ expect(subject.version).to eq('0.2.2')
expect(subject.files).to eq(knative.files)
end
end