File tree Expand file tree Collapse file tree 1 file changed +0
-11
lines changed
Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change 1- import warnings
2-
31import matplotlib .pyplot as plt
42import numpy as np
53import pytest
@@ -180,13 +178,4 @@ def test_joint_ci_bootstrap_warning(mock_framework):
180178 with pytest .warns (UserWarning , match = "Joint confidence intervals require bootstrapping" ):
181179 _ = aggregation .plot_effects (joint = True )
182180
183- # Verify that bootstrap was performed
184- assert aggregation .aggregated_frameworks .boot_t_stat is not None
185-
186- # No warning should be raised when plotting again
187- with warnings .catch_warnings (record = True ) as recorded_warnings :
188- warnings .simplefilter ("always" ) # Ensure all warnings are recorded
189- _ = aggregation .plot_effects (joint = True )
190-
191- assert len (recorded_warnings ) == 0
192181 plt .close ("all" )
You can’t perform that action at this time.
0 commit comments