Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
dweindl committed Dec 18, 2023
1 parent 637f884 commit 1fc9e28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/tests/test_swig_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -481,6 +481,6 @@ def test_model_is_deepcopyable(pysb_example_presimulation_module):
):
model2 = copy.deepcopy(model1)
assert model1.this != model2.this
assert model1.getT0() == model2.getT0()
model2.setT0(100 * model2.getT0())
assert model1.getT0() != model2.getT0()
assert model1.t0() == model2.t0()
model2.setT0(100 * model2.t0())
assert model1.t0() != model2.t0()

0 comments on commit 1fc9e28

Please sign in to comment.