Skip to content

Commit 3da3270

Browse files
fixing test
1 parent 8f38806 commit 3da3270

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arsenic/tests/test_stats.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def test_correlation_positive():
109109
s = stats.bootstrap_statistic(x_data, y_data, xerr, yerr, statistic='rho')
110110
assert 0 < s['mle'] < 1, 'Correlation must be positive for this data'
111111

112-
for stat in ['RMSE','MUE','R2','rho']:
112+
for stat in ['R2','rho']:
113113
s = stats.bootstrap_statistic(x_data, y_data, xerr, yerr, statistic=stat)
114114
# all of the statistics for this example is between 0.61 and 0.84
115115
assert 0.5 < s['mle'] < 0.9, f"Correlation must be positive for this data. {stat} is {s['mle']}"

0 commit comments

Comments
 (0)