diff --git a/dymos/examples/finite_burn_orbit_raise/test/test_multi_phase_restart.py b/dymos/examples/finite_burn_orbit_raise/test/test_multi_phase_restart.py index 7109b7026..1598b7297 100644 --- a/dymos/examples/finite_burn_orbit_raise/test/test_multi_phase_restart.py +++ b/dymos/examples/finite_burn_orbit_raise/test/test_multi_phase_restart.py @@ -53,7 +53,7 @@ def test_ex_two_burn_orbit_raise_connected(self): sim_case2 = om.CaseReader(sim_db).get_case('final') # Verify that the second case has the same inputs and outputs - assert_cases_equal(sim_case1, sim_case2, tol=1.0E-8) + assert_cases_equal(sim_case1, sim_case2, tol=1.0E-7) def test_restart_from_solution_radau(self): optimizer = 'IPOPT' @@ -86,7 +86,7 @@ def test_restart_from_solution_radau(self): sim_case2 = om.CaseReader(sim_db).get_case('final') # Verify that the second case has the same inputs and outputs - assert_cases_equal(sim_case1, sim_case2, tol=1.0E-8) + assert_cases_equal(sim_case1, sim_case2, tol=1.0E-7) @require_pyoptsparse(optimizer='IPOPT') @@ -152,8 +152,8 @@ def test_ex_two_burn_orbit_raise_connected(self): sim_case2 = om.CaseReader(sim_db).get_case('final') # Verify that the second case has the same inputs and outputs - assert_cases_equal(case1, case2, tol=1.0E-8) - assert_cases_equal(sim_case1, sim_case2, tol=1.0E-8) + assert_cases_equal(case1, case2, tol=1.0E-7) + assert_cases_equal(sim_case1, sim_case2, tol=1.0E-7) @unittest.skipUnless(MPI, "MPI is required.") def test_restart_from_solution_radau_to_connected(self):