summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
Diffstat (limited to 'tool')
-rw-r--r--tool/test-coverage.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/test-coverage.rb b/tool/test-coverage.rb
index c4ffa66a4f..8913d8d435 100644
--- a/tool/test-coverage.rb
+++ b/tool/test-coverage.rb
@@ -78,7 +78,7 @@ def invoke_simplecov_formatter
res.each do |path, cov|
next unless path.start_with?(base_dir) || path.start_with?(cur_dir)
next if path.start_with?(File.join(base_dir, "test"))
- simplecov_result[path] = cov[:lines]
+ simplecov_result[path] = cov
end
a, b = base_dir, cur_dir