diff --git a/test/blackbox/suites/easy/easy_unset.c b/test/blackbox/suites/easy/easy_unset.c index 1062cdc..49da6ed 100644 --- a/test/blackbox/suites/easy/easy_unset.c +++ b/test/blackbox/suites/easy/easy_unset.c @@ -16,10 +16,10 @@ TEST easy_unset_one(void) { FILE * fp = fopen(get_settings_singleton()->filepath, "rb"); ASSERTm("COULDN'T OPEN FILE", fp); rewind(fp); - + printf("FEOF: %d\n", feof(fp)); Kakuro board = init_kakuro(fp); printf("BOARD SIZE: %u %u\n", board.game.size[ROW], board.game.size[COLUMN]); - printf("FEOF: %d\n", feof(fp)); + fflush(stdout); fclose(fp);