File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -162,8 +162,8 @@ def test_compute_hypothesis_test_from_summaries_reference_smaller_than_observed_
162162
163163def test_compute_hypothesis_test_from_summaries_num_null_samples_zero ():
164164 """Test that compute_hypothesis_test_from_summaries raises ValueError if num_null_samples is zero."""
165- observed_summaries = np .random .rand (20 , 5 )
166- reference_summaries = np .random .rand (10 , 5 )
165+ observed_summaries = np .random .rand (10 , 5 )
166+ reference_summaries = np .random .rand (20 , 5 )
167167 num_null_samples = 0
168168
169169 with pytest .raises (ValueError ):
@@ -174,8 +174,8 @@ def test_compute_hypothesis_test_from_summaries_num_null_samples_zero():
174174
175175def test_compute_hypothesis_test_from_summaries_num_null_samples_negative ():
176176 """Test that compute_hypothesis_test_from_summaries raises ValueError if num_null_samples is negative."""
177- observed_summaries = np .random .rand (20 , 5 )
178- reference_summaries = np .random .rand (10 , 5 )
177+ observed_summaries = np .random .rand (10 , 5 )
178+ reference_summaries = np .random .rand (20 , 5 )
179179 num_null_samples = - 1
180180
181181 with pytest .raises (ValueError ):
You can’t perform that action at this time.
0 commit comments