Skip to content

Commit f05e76f

Browse files
committed
Cleanup code
1 parent d3d8bcb commit f05e76f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

python/evalica/test_evalica.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,6 @@ def test_bradley_terry(comparison: Comparison, win_weight: float, tie_weight: fl
171171
weights=weights,
172172
win_weight=win_weight,
173173
tie_weight=tie_weight,
174-
limit=10,
175174
solver="pyo3",
176175
)
177176

@@ -180,7 +179,6 @@ def test_bradley_terry(comparison: Comparison, win_weight: float, tie_weight: fl
180179
weights=weights,
181180
win_weight=win_weight,
182181
tie_weight=tie_weight,
183-
limit=10,
184182
solver="naive",
185183
)
186184

@@ -191,7 +189,7 @@ def test_bradley_terry(comparison: Comparison, win_weight: float, tie_weight: fl
191189
assert not xs or result.iterations > 0
192190
assert result.limit > 0
193191

194-
assert_series_equal(result_pyo3.scores, result_naive.scores, rtol=1e-3, check_like=True)
192+
assert_series_equal(result_pyo3.scores, result_naive.scores, check_like=True)
195193

196194

197195
@given(comparison=comparisons(), v_init=st.floats())

0 commit comments

Comments
 (0)