Skip to content

Commit

Permalink
fixing bug in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tfm000 committed Nov 5, 2023
1 parent 82100fb commit cbed45d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sklarpy/tests/multivariate/test_fitted_dists.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def test_fitted_plots(params_2d, params_3d, mvt_continuous_data):
size=(mvt_continuous_data.shape[0], 3))
kwargs: dict = {'num_points': 2, 'num_generate': 10, 'mc_num_generate': 10,
'show': False, 'show_progress': False}
for name in ('multivariate_normal', ):
for name in ('mvt_normal', ):
_, fitted_2d, _ = get_dist(name, params_2d, mvt_continuous_data)
_, fitted_3d, _ = get_dist(name, params_3d, mvt_continuous_data_3d)
for func_str in ('marginal_pairplot', 'pdf_plot',
Expand Down
2 changes: 1 addition & 1 deletion sklarpy/tests/multivariate/test_prefit_dists.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def test_prefit_plots(params_2d, params_3d, mvt_continuous_data):
size=(mvt_continuous_data.shape[0], 3))
kwargs: dict = {'num_points': 2, 'num_generate': 10, 'mc_num_generate': 10,
'show': False, 'show_progress': False}
for name in ('multivariate_normal', ):
for name in ('mvt_normal', ):
dist, _, dist_params_2d = get_dist(name, params_2d,
mvt_continuous_data)
_, _, dist_params_3d = get_dist(name, params_3d,
Expand Down

0 comments on commit cbed45d

Please sign in to comment.