summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDominick Allen <djallen@librehumanitas.org>2025-01-02 16:27:56 -0600
committerDominick Allen <djallen@librehumanitas.org>2025-01-02 16:27:56 -0600
commit8f12614f2da8221438a3807b1d234517650fbdb6 (patch)
tree18b4aebe99b1d64628546ca5811c10aeb139f1e7 /test
parent87071200872c2450c947047350132aee493033c1 (diff)
Clang tidy fixes.
Diffstat (limited to 'test')
-rw-r--r--test/test_csv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_csv.cpp b/test/test_csv.cpp
index 6923f6f..90e7ef0 100644
--- a/test/test_csv.cpp
+++ b/test/test_csv.cpp
@@ -64,7 +64,7 @@ TEST(FudCsv, ParseCsvFromFilename)
debugPrint(u8"Wrote happy data:\n-----\n{}\n-----\n", happyData);
- auto parseStatus = Csv::parseFromFilename(csv, NullOpt, happyCsvFilename);
+ auto parseStatus = Csv::parseFromFilenameUnbuffered(csv, happyCsvFilename);
if (parseStatus != FudStatus::Success) {
debugPrint(u8"Error parsing file: {}\n", FudStatusToString(parseStatus));
}