Skip to content

Commit 0bdea52

Browse files
Work around tidy check
1 parent b994469 commit 0bdea52

File tree

1 file changed

+2
-2
lines changed
  • crates/ide/src/syntax_highlighting

1 file changed

+2
-2
lines changed

crates/ide/src/syntax_highlighting/tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ macro_rules! panic {}
478478
#[rustc_builtin_macro]
479479
macro_rules! assert {}
480480
481-
macro_rules! todo {
481+
macro_rules! toho {
482482
() => ($crate::panic!("not yet implemented"));
483483
($($arg:tt)+) => ($crate::panic!("not yet implemented: {}", $crate::format_args!($($arg)+)));
484484
}
@@ -536,7 +536,7 @@ fn main() {
536536
panic!("more {}", 1);
537537
assert!(true, "{}", 1);
538538
assert!(true, "{} asdasd", 1);
539-
todo!("{}fmt", 0);
539+
toho!("{}fmt", 0);
540540
}"#
541541
.trim(),
542542
expect_file!["./test_data/highlight_strings.html"],

0 commit comments

Comments
 (0)