Skip to content

Commit

Permalink
comment test
Browse files Browse the repository at this point in the history
  • Loading branch information
IceSentry committed May 28, 2024
1 parent c380498 commit 04d4255
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/compose/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1117,9 +1117,9 @@ mod test {

let text = error.emit_to_string(&composer);

let mut f = std::fs::File::create("conditional_missing_import.txt").unwrap();
f.write_all(text.as_bytes()).unwrap();
drop(f);
// let mut f = std::fs::File::create("conditional_missing_import.txt").unwrap();
// f.write_all(text.as_bytes()).unwrap();
// drop(f);

output_eq!(text, "tests/expected/conditional_missing_import.txt");
}
Expand Down Expand Up @@ -1155,9 +1155,9 @@ mod test {

let text = error.emit_to_string(&composer);

let mut f = std::fs::File::create("conditional_missing_import_nested.txt").unwrap();
f.write_all(text.as_bytes()).unwrap();
drop(f);
// let mut f = std::fs::File::create("conditional_missing_import_nested.txt").unwrap();
// f.write_all(text.as_bytes()).unwrap();
// drop(f);

output_eq!(text, "tests/expected/conditional_missing_import_nested.txt");
}
Expand Down

0 comments on commit 04d4255

Please sign in to comment.