Skip to content
Snippets Groups Projects
Commit 4a037c5d authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Fix tests

parent 6e32b996
No related branches found
No related tags found
1 merge request!43Minor change to how non standard parameters are checked
Pipeline #
......@@ -198,6 +198,7 @@ class TestFillPrior(unittest.TestCase):
def setUp(self):
self.likelihood = Mock()
self.likelihood.parameters = dict(a=0, b=0, c=0, d=0, asdf=0, ra=1)
self.likelihood.non_standard_sampling_parameter_keys = dict(t=8)
self.priors = dict(a=1, b=1.1, c='string', d=tupak.prior.Uniform(0, 1))
self.priors = tupak.prior.fill_priors(self.priors, self.likelihood)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment