From dbd30144886fa0765b6ef4b20c13a446fd90f482 Mon Sep 17 00:00:00 2001 From: Keenan Brock Date: Fri, 20 Sep 2024 15:04:41 -0400 Subject: [PATCH] Merge pull request #23198 from agrare/fix_evm_application_spec_parallel Fix evm_application_spec parallel spec failure (cherry picked from commit ac7334bf777e8662c6b9206b3a4931487ef0ff66) --- spec/lib/tasks/evm_application_spec.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/spec/lib/tasks/evm_application_spec.rb b/spec/lib/tasks/evm_application_spec.rb index 23c211715c2..f9ae95a7bbb 100644 --- a/spec/lib/tasks/evm_application_spec.rb +++ b/spec/lib/tasks/evm_application_spec.rb @@ -320,6 +320,7 @@ def pad(val, col, adjust = :rjust) it "returns redeployment otherwise" do EvmSpecHelper.local_miq_server + expect(ActiveRecord::MigrationContext).to receive(:new).and_return(double(:current_version => 20190712135032, :needs_migration? => false)) expect(described_class.deployment_status).to eq("redeployment") end end