Skip to content

Commit 3da896d

Browse files
committed
updated tests
1 parent 62f4160 commit 3da896d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_mask.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def test_csmask_csm_6band(data, product_level):
8282
y_true = y_true.ravel()
8383
y_pred = y_pred.ravel()
8484
kappa = round(cohen_kappa_score(y_true, y_pred), 2)
85-
assert kappa >= 0.70
85+
assert kappa >= 0.65
8686

8787

8888
@pytest.mark.filterwarnings("ignore::UserWarning")
@@ -113,7 +113,7 @@ def test_csmask_valid_6band(data, product_level):
113113
y_true = y_true.ravel()
114114
y_pred = y_pred.ravel()
115115
kappa = round(cohen_kappa_score(y_true, y_pred), 2)
116-
assert kappa >= 0.70
116+
assert kappa >= 0.65
117117

118118

119119
@pytest.mark.filterwarnings("ignore::UserWarning")
@@ -139,7 +139,7 @@ def test_csmask_csm_4band(data, product_level):
139139
y_true = y_true.ravel()
140140
y_pred = y_pred.ravel()
141141
kappa = round(cohen_kappa_score(y_true, y_pred), 2)
142-
assert kappa >= 0.70
142+
assert kappa >= 0.65
143143

144144

145145
@pytest.mark.filterwarnings("ignore::UserWarning")

0 commit comments

Comments
 (0)