mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Use Module#name instead of #inspect
Coverage measurement had failed since 7d5da30c9e
https://github.com/ruby/actions/runs/708557030?check_suite_focus=true
This commit is contained in:
parent
fa380208fe
commit
f186f2d01d
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ def save_coverage_data(res1)
|
|||
if cov[:methods]
|
||||
h = {}
|
||||
cov[:methods].each do |(klass, *key), count|
|
||||
h[[klass.inspect, *key]] = count
|
||||
h[[klass.name, *key]] = count
|
||||
end
|
||||
cov[:methods].replace h
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue