Skip to content
Snippets Groups Projects

Resolve "Restructure prior module"

Merged Moritz Huebner requested to merge 444-restructure-prior-module into master
All threads resolved!
1 file
+ 1
3
Compare changes
  • Side-by-side
  • Inline
+ 1
3
@@ -7,8 +7,6 @@ import numpy as np
import os
import scipy.stats as ss
import bilby.core.prior.conditional
class TestPriorInstantiationWithoutOptionalPriors(unittest.TestCase):
@@ -1004,7 +1002,7 @@ class TestConditionalPrior(unittest.TestCase):
self.assertEqual(self.maximum + 1, self.prior.maximum)
def test_update_conditions_illegal_variables(self):
with self.assertRaises(bilby.core.prior.conditional.IllegalRequiredVariablesException):
with self.assertRaises(bilby.core.prior.IllegalRequiredVariablesException):
self.prior.update_conditions(test_parameter_1=self.test_variable_1)
def test_sample_calls_update_conditions(self):
Loading