Skip to content

Commit

Permalink
fix tests that were broken due to moving files around
Browse files Browse the repository at this point in the history
  • Loading branch information
ekiwi committed Nov 20, 2023
1 parent d4d2728 commit 5853170
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/btor2_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ fn serialize_count2() {

#[test]
fn parse_quiz1() {
let (ctx, sys) = btor2::parse_file("inputs/Quiz1.btor").unwrap();
let (ctx, sys) = btor2::parse_file("inputs/chiseltest/Quiz1.btor").unwrap();
insta::assert_snapshot!(sys.serialize_to_str(&ctx));
}

#[test]
fn serialize_quiz1() {
let (ctx, sys) = btor2::parse_file("inputs/Quiz1.btor").unwrap();
let (ctx, sys) = btor2::parse_file("inputs/chiseltest/Quiz1.btor").unwrap();
insta::assert_snapshot!(btor2::serialize_to_str(&ctx, &sys));
}

0 comments on commit 5853170

Please sign in to comment.