Skip to content

Commit

Permalink
Failure report
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavo-shigueo committed Jul 24, 2024
1 parent 6a962c0 commit a5a3fba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ts-rs/tests/integration/same_file_export.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ fn test() {

let contents = std::fs::read_to_string(&A::default_output_path().unwrap()).unwrap();

assert!(contents.contains(&A::decl()));
assert!(contents.contains(&B::decl()));
assert!(contents.contains(&C::decl()));
assert!(contents.contains(&A::decl()), "{contents}");
assert!(contents.contains(&B::decl()), "{contents}");
assert!(contents.contains(&C::decl()), "{contents}");
}

0 comments on commit a5a3fba

Please sign in to comment.