diff options
author | Kamil Trzciński <ayufan@ayufan.eu> | 2018-12-14 07:02:45 +0000 |
---|---|---|
committer | Kamil Trzciński <ayufan@ayufan.eu> | 2018-12-14 07:02:45 +0000 |
commit | 91855866ebe404b26ff12fa031390111273a1af1 (patch) | |
tree | 6403ff6c47ec0268c2659f9d6b26680bd388785b /spec | |
parent | 4f10493bc0bdec5b4d3e462f07ef8d1d3cbce50c (diff) | |
parent | 1d241206b59ee9c7160642e1cb3672c4e4375945 (diff) | |
download | gitlab-ce-91855866ebe404b26ff12fa031390111273a1af1.tar.gz |
Merge branch 'triggermesh-knative-version' into 'master'
Upgrade Knative from 0.1.3 to 0.2.2
See merge request gitlab-org/gitlab-ce!23808
Diffstat (limited to 'spec')
-rw-r--r-- | spec/models/clusters/applications/knative_spec.rb | 6 |
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 |