Skip to content

Commit 9a6bf4f

Browse files
committed
all unit tests passing except one
1 parent 1a7646d commit 9a6bf4f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

rebound/tests/test_trace_wb.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ def test_trace_simulationarchive(self):
8787
sim.integrator = "trace"
8888
sim.integrator.coordinates = 'widebinary'
8989
sim.dt = (8./365.)*2.*math.pi
90+
sim.integrator.r_crit_hill = 5
9091
sim.save_to_file("test.bin", step=10,delete_file=True)
9192
sim.integrate(1000.,exact_finish_time=0)
9293

@@ -145,7 +146,7 @@ def test_outer_solar_massive(self):
145146
E0 = sim.energy()
146147
sim.integrate(1000)
147148
dE = abs((sim.energy() - E0)/E0)
148-
self.assertLess(dE,8e-8)
149+
self.assertLess(dE,7e-8)
149150

150151
def test_outer_solar(self):
151152
def get_sim():

0 commit comments

Comments
 (0)