Skip to content

Commit 60bcd35

Browse files
ser-vasilichsingaraiona
authored andcommitted
remove tmp dir from path
1 parent 77e08e5 commit 60bcd35

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/lang.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5286,17 +5286,17 @@ test_result_t test_lang_read_csv() {
52865286
i64_t i;
52875287
FILE *f;
52885288

5289-
f = fopen("/tmp/rf_test_syms.csv", "w");
5289+
f = fopen("rf_test_syms.csv", "w");
52905290
TEST_ASSERT(f != NULL, "failed to create temp CSV");
52915291
fprintf(f, "id,sym\n");
52925292
for (i = 0; i < 20000; i++)
52935293
fprintf(f, "%lld,s%lld\n", (long long)i, (long long)i);
52945294
fclose(f);
52955295

52965296
TEST_ASSERT_EQ(
5297-
"(count (read-csv [I64 SYMBOL] \"/tmp/rf_test_syms.csv\"))",
5297+
"(count (read-csv [I64 SYMBOL] \"rf_test_syms.csv\"))",
52985298
"20000");
52995299

5300-
remove("/tmp/rf_test_syms.csv");
5300+
remove("rf_test_syms.csv");
53015301
PASS();
53025302
}

0 commit comments

Comments
 (0)