diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2025-01-02 16:27:56 -0600 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2025-01-02 16:27:56 -0600 |
commit | 8f12614f2da8221438a3807b1d234517650fbdb6 (patch) | |
tree | 18b4aebe99b1d64628546ca5811c10aeb139f1e7 /test/test_csv.cpp | |
parent | 87071200872c2450c947047350132aee493033c1 (diff) |
Clang tidy fixes.
Diffstat (limited to 'test/test_csv.cpp')
-rw-r--r-- | test/test_csv.cpp | 2 |
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)); } |