Skip to content

Commit

Permalink
Fix typo in expectation message
Browse files Browse the repository at this point in the history
  • Loading branch information
acj committed Dec 27, 2022
1 parent 2670735 commit 24ad81d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/summary.rs
Expand Up @@ -160,7 +160,7 @@ mod tests {
";

let mut buf: Vec<u8> = Vec::new();
stats.write(&mut buf).expect("Callgrind write failed");
stats.write(&mut buf).expect("summary write failed");
let actual = String::from_utf8(buf).expect("summary output not utf8");
assert_eq!(actual, expected, "Unexpected summary output");
}
Expand Down

0 comments on commit 24ad81d

Please sign in to comment.