Use Module#name instead of #inspect
Coverage measurement had failed since 7d5da30c9e9c572f6ef0aaccc1ca0e724966e2ee https://github.com/ruby/actions/runs/708557030?check_suite_focus=true
This commit is contained in:
parent
fa380208fe
commit
f186f2d01d
@ -44,7 +44,7 @@ def save_coverage_data(res1)
|
|||||||
if cov[:methods]
|
if cov[:methods]
|
||||||
h = {}
|
h = {}
|
||||||
cov[:methods].each do |(klass, *key), count|
|
cov[:methods].each do |(klass, *key), count|
|
||||||
h[[klass.inspect, *key]] = count
|
h[[klass.name, *key]] = count
|
||||||
end
|
end
|
||||||
cov[:methods].replace h
|
cov[:methods].replace h
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user