fix black

This commit is contained in:
Han Fei 2024-08-19 17:43:44 +02:00
parent 265d49e091
commit 7fcacd16df

View File

@ -67,7 +67,7 @@ def test_mann_whitney():
def test_mann_whitney_skew():
rvs1 = [1]
rvs2 = [0,2,4]
rvs2 = [0, 2, 4]
s, p = stats.mannwhitneyu(rvs1, rvs2, alternative="two-sided")
test_and_check("mannWhitneyUTest", rvs1, rvs2, s, p)
test_and_check("mannWhitneyUTest('two-sided')", rvs1, rvs2, s, p)