Skip to content

Commit

Permalink
make tests use kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
wd60622 committed Oct 27, 2024
1 parent 31ce753 commit 49a0300
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def test_linear_regression(intercept, slope, sigma) -> None:
beta=10,
)

posterior = linear_regression(X, y, prior=prior)
posterior = linear_regression(X=X, y=y, prior=prior)

beta_samples, variance_samples = posterior.sample_beta(
size=500, return_variance=True, random_state=rng
Expand Down

0 comments on commit 49a0300

Please sign in to comment.