Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
teubert committed Dec 20, 2023
1 parent 97fe889 commit 58f51f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_base_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ def test_parameters_statelikematrixwrapper(self):
"""
This is testing a very specific case where a state container from one model is used to define the noise from another.
"""
m0 = OneInputTwoStatesNoOutputNoEventLM()
m1 = OneInputNoOutputNoEventLM(process_noise=m0.parameters['process_noise'])
m0 = OneInputNoOutputNoEventLM()
m1 = OneInputTwoStatesNoOutputNoEventLM(process_noise=m0.parameters['process_noise'])
self.assertSetEqual(set(m1.parameters['process_noise'].keys()), set(m1.states))

def test_integration_type_scipy(self):
Expand Down

0 comments on commit 58f51f9

Please sign in to comment.