Skip to content

Commit c690eb7

Browse files
committed
formatted code
1 parent 0e5be1b commit c690eb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build_system/src/test.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -839,8 +839,8 @@ fn contains_ui_error_patterns(file_path: &Path, keep_lto_tests: bool) -> Result<
839839
// Return false (keep) for tests with pass markers, true (remove) for everything else.
840840
let file = File::open(file_path)
841841
.map_err(|error| format!("Failed to read `{}`: {:?}", file_path.display(), error))?;
842-
843-
let mut has_pass_marker = false;
842+
843+
let mut has_pass_marker = false;
844844
for line in BufReader::new(file).lines().map_while(Result::ok) {
845845
let line = line.trim();
846846
if line.is_empty() {

0 commit comments

Comments
 (0)