Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGAzed committed Jun 23, 2024
1 parent 476a838 commit 0471b2b
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions test/blackbox/suites/easy/easy_unset.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,8 @@ TEST easy_unset_one(void) {
FILE * fp = fopen(get_settings_singleton()->filepath, "rb");
ASSERTm("COULDN'T OPEN FILE", fp);

char c;
do {
c = fgetc(fp);
printf ("%02x\n", c);
} while (!feof(fp));
fflush(stdout);
rewind(fp);

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

SArray solution = depth_first_search(board);
Expand Down

0 comments on commit 0471b2b

Please sign in to comment.