Skip to content

Commit

Permalink
another try
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGAzed committed Jun 23, 2024
1 parent 1382100 commit bcaede5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/blackbox/suites/easy/easy_unset.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,12 @@ TEST easy_unset_one(void) {
ASSERTm("COULDN'T OPEN FILE", fp);

Kakuro board = init_kakuro(fp);
print_board(board);
fclose(fp);

SArray solution = depth_first_search(board);
free_kakuro(&board);

print_board(board);

ASSERTm("NO SOLUTION FOUND", solution.size);
ASSERTm("LENGTHS DON'T ADD UP", solution.size == (sizeof(expected_solution) / sizeof(ksize_t)));

Expand Down

0 comments on commit bcaede5

Please sign in to comment.