From 97573b03133c15e70c58a3a4e980aea9ac122a39 Mon Sep 17 00:00:00 2001 From: Omar Rizwan Date: Sun, 21 Feb 2021 19:30:56 -0800 Subject: [PATCH] update test to use inputs instead of textareas --- test/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.c b/test/test.c index 6f4537d..3256e05 100644 --- a/test/test.c +++ b/test/test.c @@ -94,7 +94,7 @@ int main() { char ta[100] = {0}; fread(ta, 1, sizeof(ta), console); assert(strcmp(ta, "initial text") == 0); - assert(file_contents_equal("../fs/mnt/tabs/last-focused/textareas/ta.txt", ta)); + assert(file_contents_equal("../fs/mnt/tabs/last-focused/inputs/ta.txt", ta)); fclose(console); }