diff --git a/spec/serializers/cluster_application_entity_spec.rb b/spec/serializers/cluster_application_entity_spec.rb index 8a3a081adf8..87c7b2ad36e 100644 --- a/spec/serializers/cluster_application_entity_spec.rb +++ b/spec/serializers/cluster_application_entity_spec.rb @@ -10,7 +10,7 @@ describe ClusterApplicationEntity do end it 'has status' do - expect(subject[:status]).to eq(:installable) + expect(subject[:status]).to eq(:not_installable) end it 'has no status_reason' do diff --git a/spec/serializers/cluster_entity_spec.rb b/spec/serializers/cluster_entity_spec.rb index f50f5999bfc..d6a43fd0f00 100644 --- a/spec/serializers/cluster_entity_spec.rb +++ b/spec/serializers/cluster_entity_spec.rb @@ -39,12 +39,12 @@ describe ClusterEntity do let(:cluster) { create(:cluster) } subject { described_class.new(cluster).as_json[:applications]} - it 'contains helm as installable' do + it 'contains helm as not_installable' do expect(subject).not_to be_empty helm = subject[0] expect(helm[:name]).to eq('helm') - expect(helm[:status]).to eq(:installable) + expect(helm[:status]).to eq(:not_installable) end end end