From 358d129307b39e2a1bf3ccaa517df6f45b04c4b2 Mon Sep 17 00:00:00 2001 From: Anna Wellmann <a.wellmann@tu-bs.de> Date: Tue, 28 Jun 2022 13:18:43 +0000 Subject: [PATCH] Fix ParameterTest The test needed to be changed because of commit #06fed8a51fd7c3c9cbdd83e4e8b63ee6171f9ec1. --- src/gpu/VirtualFluids_GPU/Parameter/ParameterTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gpu/VirtualFluids_GPU/Parameter/ParameterTest.cpp b/src/gpu/VirtualFluids_GPU/Parameter/ParameterTest.cpp index 2751a9489..5d9485b5a 100644 --- a/src/gpu/VirtualFluids_GPU/Parameter/ParameterTest.cpp +++ b/src/gpu/VirtualFluids_GPU/Parameter/ParameterTest.cpp @@ -42,7 +42,7 @@ TEST(ParameterTest, check_all_Parameter_CanBePassedToConstructor) Parameter para(config, 1, 0); // test optional parameter - EXPECT_THAT(para.getOutputPath(), testing::Eq("/output/path")); + EXPECT_THAT(para.getOutputPath(), testing::Eq("/output/path/")); EXPECT_THAT(para.getGridPath(), testing::Eq("/path/to/grid/")); // ... all grid files (e.g. multi-gpu/ multi-level) could be tested as well EXPECT_THAT(para.getgeoVec(), testing::Eq("/path/to/grid/geoVec.dat")); EXPECT_THAT(para.getMaxDev(), testing::Eq(2)); -- GitLab