Skip to content

Commit cd0ef1d

Browse files
[autofix.ci] apply automated fixes
1 parent a6fa354 commit cd0ef1d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tasks/coverage/src/tools/formatter.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ fn get_result(source_text: &str, source_type: SourceType) -> TestResult {
2525
let source_text1 = Formatter::new(&allocator, options.clone()).build(&program);
2626

2727
let allocator = Allocator::default();
28-
let ParserReturn { program, errors, .. } =
29-
Parser::new(&allocator, &source_text1, source_type).with_options(get_parse_options()).parse();
28+
let ParserReturn { program, errors, .. } = Parser::new(&allocator, &source_text1, source_type)
29+
.with_options(get_parse_options())
30+
.parse();
3031

3132
if !errors.is_empty() {
3233
return TestResult::ParseError(

0 commit comments

Comments
 (0)