Skip to content

Commit

Permalink
tests: Update generated reports to nightly-2024-12-18
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Dec 18, 2024
1 parent a853ee2 commit cec754f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/fixtures/coverage-reports/merge/merge.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@
| merge::func:
| 1| 1|fn func(x: i32) -> bool {
| 2| 1| if x < 0 {
| 3| 1| true
| 3| 0| true
| 4| | } else {
| 5| 0| false
| 5| 1| false
| 6| | }
| 7| 1|}
------------------
| merge::func:
| 1| 1|fn func(x: i32) -> bool {
| 2| 1| if x < 0 {
| 3| 0| true
| 3| 1| true
| 4| | } else {
| 5| 1| false
| 5| 0| false
| 6| | }
| 7| 1|}
------------------
Expand All @@ -37,15 +37,15 @@
| 10| 1|fn test() {
| 11| 1| #[cfg(feature = "a")]
| 12| 1| assert!(!func(1));
| 13| 1| #[cfg(feature = "b")]
| 14| 1| assert!(func(-1));
| 13| | #[cfg(feature = "b")]
| 14| | assert!(func(-1));
| 15| 1|}
------------------
| merge::test:
| 10| 1|fn test() {
| 11| 1| #[cfg(feature = "a")]
| 12| 1| assert!(!func(1));
| 13| | #[cfg(feature = "b")]
| 14| | assert!(func(-1));
| 13| 1| #[cfg(feature = "b")]
| 14| 1| assert!(func(-1));
| 15| 1|}
------------------

0 comments on commit cec754f

Please sign in to comment.