summaryrefslogtreecommitdiff
path: root/test/test_csv.cpp
diff options
context:
space:
mode:
authorDominick Allen <djallen@librehumanitas.org>2025-01-04 09:56:12 -0600
committerDominick Allen <djallen@librehumanitas.org>2025-01-04 09:56:12 -0600
commit0b400af9519444deef4cc6ad2c43c30e2092ab4f (patch)
treee6b0d78a2c292a7df5724f150e123b55d7871819 /test/test_csv.cpp
parent253385f4bca5ccd2fee22fea8333dfe435c0df0a (diff)
Fix bug related to string copying.
Diffstat (limited to 'test/test_csv.cpp')
-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 65c02ef..83bfe0a 100644
--- a/test/test_csv.cpp
+++ b/test/test_csv.cpp
@@ -201,7 +201,7 @@ TEST(FudCsv, ParseNuclides)
pushExpected(StringView{u8"ENSDFauthors"});
pushExpected(StringView{u8"Extraction_date"});
- StringView nuclidesFilename{u8"test/nuclides.csv"};
+ StringView nuclidesFilename{u8"nuclides.csv"};
Csv csv{Csv::makeDefault()};
auto parseStatus = Csv::parseFromFilenameUnbuffered(csv, nuclidesFilename);
if (parseStatus != FudStatus::Success) {