Skip to content

Commit

Permalink
Fix bug with test
Browse files Browse the repository at this point in the history
Should have fixed when I made change to non-hardcoded path
  • Loading branch information
ianhbell committed Feb 25, 2024
1 parent 524daf9 commit 5f896d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/catch_test_multifluid.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ TEST_CASE("Test ECS for pure fluids", "[ECS]"){
}
})"_json;
contents["model"]["reference_fluid"]["name"] = FLUIDDATAPATH + "/dev/fluids/R113.json";
auto model = teqp::cppinterface::make_model(nlohmann::json::parse(contents));
auto model = teqp::cppinterface::make_model(contents);
double T = 400, rho = 2700;
auto z = (Eigen::ArrayXd(1) << 1.0).finished();
model->get_Ar00(T, rho, z);
Expand Down

0 comments on commit 5f896d9

Please sign in to comment.