From e652e8154850cf9270460c0c7234a256225d4776 Mon Sep 17 00:00:00 2001 From: Geremia Taglialatela Date: Wed, 15 Mar 2017 16:23:18 +0100 Subject: [PATCH] Fix failing spec SimpleCov 0.14.0 skip the :nocov: comments along with the code that they skip. This commit updates a failing spec to reflect that change. Ref: colszowka/simplecov@d4756e4e9bf20fb1a5a81475d3f22dcdeb7f46a8 --- spec/coveralls/simplecov_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/coveralls/simplecov_spec.rb b/spec/coveralls/simplecov_spec.rb index a56460c7..72b4a828 100644 --- a/spec/coveralls/simplecov_spec.rb +++ b/spec/coveralls/simplecov_spec.rb @@ -75,7 +75,7 @@ def source_fixture(filename) it "nils the skipped lines" do source_file = source_files.first source_file[:coverage].should_not eq result.files.first.coverage - source_file[:coverage].should eq [nil, 1, 1, 1, nil, 0, 1, nil, nil, nil] + source_file[:coverage].should eq [nil, 1, 1, 1, nil, 0, nil, nil, nil, nil, nil] end end end