Skip to content
Snippets Groups Projects
Commit 5c4a425c authored by Gerardo Tauriello's avatar Gerardo Tauriello
Browse files

Fix = check in unit test.

parent 36b8e450
No related branches found
No related tags found
No related merge requests found
......@@ -560,7 +560,7 @@ BOOST_AUTO_TEST_CASE(test_topology_merge){
geom::Vec3 v0;
top_eight->GetHarmonicBondParameters(harmonic_bond_indices[0],ui0,ui1,r0,r1);
BOOST_CHECK(r0 = 42.0 && r1 == 42000.0);
BOOST_CHECK(r0 == 42.0 && r1 == 42000.0);
top_eight->GetHarmonicAngleParameters(harmonic_angle_indices[0],ui0,ui1,ui2,r0,r1);
BOOST_CHECK(r0 == 24.0 && r1 == 24000.0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment