Skip to content

Commit ef3a89c

Browse files
Fix tabs in test file to satisfy tidy check
1 parent 1e59341 commit ef3a89c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • compiler/rustc_errors/src/markdown/tests

compiler/rustc_errors/src/markdown/tests/parse.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ fn test_snake_case() {
367367

368368
#[test]
369369
fn test_codeblock_trailing_whitespace() {
370-
let buf = "```rust\ncode\n``` \nrest";
370+
let buf = "```rust\ncode\n``` \nrest";
371371
let (t, r) = parse_codeblock(buf.as_bytes());
372372
assert_eq!(t, MdTree::CodeBlock { txt: "code", lang: Some("rust") });
373373
assert_eq!(r, b"\nrest");

0 commit comments

Comments
 (0)