From d911544e5fa96f21cf508659a12a0a3b3211b728 Mon Sep 17 00:00:00 2001 From: Tobias Pfeiffer Date: Tue, 25 Jun 2019 14:58:56 +0200 Subject: [PATCH] process_result no longer relies on result? as order was changed (#726) This is an error after merging 2 decent PRs that passed in isolation but not when merged together :) --- spec/simplecov_spec.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/spec/simplecov_spec.rb b/spec/simplecov_spec.rb index 336d0a15..7a8a8823 100644 --- a/spec/simplecov_spec.rb +++ b/spec/simplecov_spec.rb @@ -176,7 +176,6 @@ describe ".process_result" do before do expect(SimpleCov).to receive(:result_exit_status).and_return SimpleCov::ExitCodes::MINIMUM_COVERAGE - expect(SimpleCov).to receive(:result?).and_return true end context "when the final result process" do let(:result) { double(SimpleCov::Result, :covered_percent => 0.0) }