lib/coverband/adapters/file_store.rb in coverband-4.2.0 vs lib/coverband/adapters/file_store.rb in coverband-4.2.1.rc1

- old
+ new

@@ -34,10 +34,10 @@ def save_coverage(report) File.open(path, 'w') { |f| f.write(report.to_json) } end - def get_report + def get_report(_local_type = nil) if File.exist?(path) JSON.parse(File.read(path)) else {} end