Commit 9e83ef09 authored by Peter Eastman's avatar Peter Eastman
Browse files

Fixed compilation error under Linux

parent 274842f3
......@@ -249,7 +249,7 @@ void testWater() {
}
volume /= steps;
double density = numMolecules*18/(AVOGADRO*volume*1e-21);
ASSERT_USUALLY_EQUAL_TOL(1, density, 0.1);
ASSERT_USUALLY_EQUAL_TOL(1.0, density, 0.1);
}
int main() {
......
......@@ -249,7 +249,7 @@ void testWater() {
}
volume /= steps;
double density = numMolecules*18/(AVOGADRO*volume*1e-21);
ASSERT_USUALLY_EQUAL_TOL(1, density, 0.1);
ASSERT_USUALLY_EQUAL_TOL(1.0, density, 0.1);
}
int main() {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment