Revert "Adjust expected result for coverage test"

This reverts commit 4da05e0b88.
This commit is contained in:
Matthias Krüger 2023-04-25 00:08:29 +02:00
parent 521de433f4
commit 653cfdb436

View file

@ -136,10 +136,10 @@
134| |
135| |impl std::fmt::Debug for Foo {
136| | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
137| 9| write!(f, "try and succeed")?;
137| 7| write!(f, "try and succeed")?;
^0
138| 9| Ok(())
139| 9| }
138| 7| Ok(())
139| 7| }
140| |}
141| |
142| |static mut DEBUG_LEVEL_ENABLED: bool = false;