Update coverage-run tests

This commit is contained in:
Vadim Petrochenkov 2024-02-18 20:51:45 +03:00
parent 9f8d05f29f
commit 12d7bac2a4
2 changed files with 5 additions and 5 deletions

View file

@ -23,7 +23,7 @@
LL| |}
LL| |
LL| |macro_that_defines_a_function! {
LL| | fn affected_function() {
LL| 1| fn affected_function() {
LL| 1| || ()
LL| | }
LL| |}

View file

@ -19,11 +19,11 @@
LL| |}
LL| |
LL| |macro_that_defines_a_function! {
LL| | fn affected_function() {
LL| | if !false {
LL| | ()
LL| 1| fn affected_function() {
LL| 1| if !false {
LL| 1| ()
LL| | } else {
LL| | ()
LL| 0| ()
LL| | }
LL| | }
LL| |}