diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-01-27 18:09:04 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-01-27 18:09:04 +0000 |
commit | 390582e118752426acf5cb25ec99103d312d891c (patch) | |
tree | bb0b1a6a46632024ffc3ba1983e4ebcb0fab4428 /spec/models/clusters | |
parent | 1ea1db491c8bc90789acda45c9002aaa5c4dc498 (diff) | |
download | gitlab-ce-390582e118752426acf5cb25ec99103d312d891c.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/models/clusters')
-rw-r--r-- | spec/models/clusters/applications/ingress_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/clusters/applications/ingress_spec.rb b/spec/models/clusters/applications/ingress_spec.rb index c1158698601..c086ab23058 100644 --- a/spec/models/clusters/applications/ingress_spec.rb +++ b/spec/models/clusters/applications/ingress_spec.rb @@ -102,7 +102,7 @@ describe Clusters::Applications::Ingress do it 'is initialized with ingress arguments' do expect(subject.name).to eq('ingress') expect(subject.chart).to eq('stable/nginx-ingress') - expect(subject.version).to eq('1.22.1') + expect(subject.version).to eq('1.29.3') expect(subject).to be_rbac expect(subject.files).to eq(ingress.files) end @@ -119,7 +119,7 @@ describe Clusters::Applications::Ingress do let(:ingress) { create(:clusters_applications_ingress, :errored, version: 'nginx') } it 'is initialized with the locked version' do - expect(subject.version).to eq('1.22.1') + expect(subject.version).to eq('1.29.3') end end end |