Skip to content

Commit

Permalink
oops missing boolean not
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahm-LANL committed Dec 25, 2024
1 parent 5f79307 commit 0e61f98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_eos_helmholtz.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ SCENARIO("Helmholtz equation of state - Table interpolation (tgiven)", "[Helmhol
if (!isClose(gruen, gruen_ref[k], 1e-6)) nwrong += 1;

// RhoSie of PT
nwrong += CheckRhoSieFromPT(eos, rho_in[i], temp_in[i], lambda);
nwrong += !CheckRhoSieFromPT(eos, rho_in[i], temp_in[i], lambda);

// Deserialized EOS
ein = eos_2.InternalEnergyFromDensityTemperature(rho_in[i], temp_in[j],
Expand Down

0 comments on commit 0e61f98

Please sign in to comment.