Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Ralf Jung <[email protected]>
  • Loading branch information
Mandragorian and RalfJung authored Oct 27, 2024
1 parent 6688670 commit f2acadc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
run: RUSTDOCFLAGS="-Dwarnings" ./miri doc --document-private-items

coverage:
name: Coverage report
name: coverage report
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion miri-script/src/coverage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ impl CoverageReport {
/// show_coverage_report will print coverage information using the artifact
/// files in `self.path`.
pub fn show_coverage_report(&self, e: &MiriEnv) -> Result<()> {
let profraw_files: Vec<_> = self.profraw_files()?;
let profraw_files = self.profraw_files()?;

let profdata_bin = path!(e.libdir / ".." / "bin" / "llvm-profdata");

Expand Down

0 comments on commit f2acadc

Please sign in to comment.