Skip to content

Commit

Permalink
Fix another instance of time
Browse files Browse the repository at this point in the history
  • Loading branch information
bgyori committed Jul 13, 2023
1 parent 8eff2fa commit 016ac0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_model_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ def test_n_way_comparison_askenet(self):
sir_parameterized_ctx.initials = {
k: v.copy(deep=True) for k, v in sir_templ_model.initials.items()
}
sir_parameterized_ctx.time = sir_templ_model.time.copy(deep=True)
sir_parameterized_ctx.time = copy.deepcopy(sir_templ_model.time)
askenet_list = []
for sp in [sir_templ_model, sir_parameterized_ctx]:
askenet_list.append(
Expand Down

0 comments on commit 016ac0c

Please sign in to comment.