Commit fd1c1f99 authored by Matija Čupić's avatar Matija Čupić

Backport CE changes from gitlab-ee#518a29073a9

parent d4ff5ee8
...@@ -245,7 +245,7 @@ describe Clusters::Platforms::Kubernetes, :use_clean_rails_memory_store_caching ...@@ -245,7 +245,7 @@ describe Clusters::Platforms::Kubernetes, :use_clean_rails_memory_store_caching
stub_kubeclient_deployments stub_kubeclient_deployments
end end
it { is_expected.to eq(pods: [kube_pod]) } it { is_expected.to include(pods: [kube_pod]) }
end end
context 'when kubernetes responds with 500s' do context 'when kubernetes responds with 500s' do
...@@ -263,7 +263,7 @@ describe Clusters::Platforms::Kubernetes, :use_clean_rails_memory_store_caching ...@@ -263,7 +263,7 @@ describe Clusters::Platforms::Kubernetes, :use_clean_rails_memory_store_caching
stub_kubeclient_deployments(status: 404) stub_kubeclient_deployments(status: 404)
end end
it { is_expected.to eq(pods: []) } it { is_expected.to include(pods: []) }
end end
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment