Skip to content

Commit 320d17a

Browse files
committed
Update the .stderr to include the backticks
1 parent 288f02d commit 320d17a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/ui/unit_cmp.stderr

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,31 +22,31 @@ LL | | false;
2222
LL | | } {}
2323
| |_____^
2424

25-
error: assert_eq of unit values detected. This will always succeed
25+
error: `assert_eq` of unit values detected. This will always succeed
2626
--> $DIR/unit_cmp.rs:24:5
2727
|
2828
LL | assert_eq!((), ());
2929
| ^^^^^^^^^^^^^^^^^^^
3030
|
3131
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
3232

33-
error: debug_assert_eq of unit values detected. This will always succeed
33+
error: `debug_assert_eq` of unit values detected. This will always succeed
3434
--> $DIR/unit_cmp.rs:25:5
3535
|
3636
LL | debug_assert_eq!((), ());
3737
| ^^^^^^^^^^^^^^^^^^^^^^^^^
3838
|
3939
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
4040

41-
error: assert_ne of unit values detected. This will always fail
41+
error: `assert_ne` of unit values detected. This will always fail
4242
--> $DIR/unit_cmp.rs:27:5
4343
|
4444
LL | assert_ne!((), ());
4545
| ^^^^^^^^^^^^^^^^^^^
4646
|
4747
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
4848

49-
error: debug_assert_ne of unit values detected. This will always fail
49+
error: `debug_assert_ne` of unit values detected. This will always fail
5050
--> $DIR/unit_cmp.rs:28:5
5151
|
5252
LL | debug_assert_ne!((), ());

0 commit comments

Comments
 (0)