Skip to content

Commit

Permalink
Support for globally frozen string literals
Browse files Browse the repository at this point in the history
  • Loading branch information
chetan committed Mar 4, 2020
1 parent e8a53fb commit 443236f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/simplecov-console/output/block.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ def output(files, root)
block << sprintf("%8.8s: %s", 'missed', missed(f.missed_lines).join(", "))
blocks << block.join("\n")
end
"\n" << blocks.join("\n\n") << "\n\n"

"\n" + blocks.join("\n\n") + "\n\n"
end

end
Expand Down

0 comments on commit 443236f

Please sign in to comment.