From 95a9e694b09b59e634fcaae60d0df537250a62da Mon Sep 17 00:00:00 2001 From: Hannes Martin Signer Date: Thu, 3 Aug 2023 10:30:12 +0200 Subject: [PATCH] change test path --- test/testSimulation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/testSimulation.cpp b/test/testSimulation.cpp index 1020a7e..72beacc 100644 --- a/test/testSimulation.cpp +++ b/test/testSimulation.cpp @@ -58,8 +58,8 @@ static Grid setupSimulation() { } TEST_CASE("equality to reference matrix") { - fs::path p = fs::current_path().parent_path().parent_path(); - string test_path = p.generic_string() + "/test/FTCS_11_11_7000.csv"; + fs::path p = fs::current_path(); // .parent_path().parent_path(); + string test_path = p.generic_string() + "/FTCS_11_11_7000.csv"; MatrixXd reference = CSV2Eigen(test_path); cout << test_path << endl; Grid grid = setupSimulation();