From 5c4a425c5dcd261708677f984c3aa06880e5c64e Mon Sep 17 00:00:00 2001 From: Gerardo Tauriello <gerardo.tauriello@unibas.ch> Date: Mon, 30 Sep 2019 18:32:48 +0200 Subject: [PATCH] Fix = check in unit test. --- modules/mol/mm/tests/test_topology.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/mol/mm/tests/test_topology.cc b/modules/mol/mm/tests/test_topology.cc index d10bd05e6..5d8644fa2 100644 --- a/modules/mol/mm/tests/test_topology.cc +++ b/modules/mol/mm/tests/test_topology.cc @@ -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); -- GitLab