Skip to content

Commit 500c228

Browse files
corrected bin=None argument in Hard_GW
1 parent babdd0f commit 500c228

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

holodeck/discrete/tests/test_evolution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ def test_static_methods(self, simplest):
541541

542542
step = np.random.randint(evo.steps)
543543
print(f"step = {step}")
544-
dadt, dedt = holo.hardening.Hard_GW.dadt_dedt(evo, step)
544+
dadt, dedt = holo.hardening.Hard_GW.dadt_dedt(evo, None, step)
545545
assert np.shape(dadt) == (evo.size,)
546546
assert np.shape(dedt) == (evo.size,)
547547
assert np.all(dadt <= 0.0)

0 commit comments

Comments
 (0)