Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Apr 29, 2024
1 parent 28e53a3 commit 93d44e2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
9 changes: 6 additions & 3 deletions test/test_Likelihood/test_los_distribution.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,10 @@ def test_draw_bool(self):
class TestRaise(unittest.TestCase):
def test_raise(self):
with self.assertRaises(ValueError):
los = LOSDistribution(kappa_pdf=None, kappa_bin_edges=None,
global_los_distribution=0,
los_distributions=["BAD"])
los = LOSDistribution(
kappa_pdf=None,
kappa_bin_edges=None,
global_los_distribution=0,
los_distributions=["BAD"],
)
los.draw_los(kwargs_los=[{}])
1 change: 0 additions & 1 deletion test/test_Sampling/test_ParamManager/test_los_param.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,5 @@ def test_raise(self):
)



if __name__ == "__main__":
pytest.main()

0 comments on commit 93d44e2

Please sign in to comment.