From f05e76f6c4b5ec0c31576baf8ae8ef4cb2405783 Mon Sep 17 00:00:00 2001 From: Dmitry Ustalov Date: Thu, 29 Aug 2024 23:06:42 +0200 Subject: [PATCH] Cleanup code --- python/evalica/test_evalica.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/python/evalica/test_evalica.py b/python/evalica/test_evalica.py index 9f4747b..b452c35 100644 --- a/python/evalica/test_evalica.py +++ b/python/evalica/test_evalica.py @@ -171,7 +171,6 @@ def test_bradley_terry(comparison: Comparison, win_weight: float, tie_weight: fl weights=weights, win_weight=win_weight, tie_weight=tie_weight, - limit=10, solver="pyo3", ) @@ -180,7 +179,6 @@ def test_bradley_terry(comparison: Comparison, win_weight: float, tie_weight: fl weights=weights, win_weight=win_weight, tie_weight=tie_weight, - limit=10, solver="naive", ) @@ -191,7 +189,7 @@ def test_bradley_terry(comparison: Comparison, win_weight: float, tie_weight: fl assert not xs or result.iterations > 0 assert result.limit > 0 - assert_series_equal(result_pyo3.scores, result_naive.scores, rtol=1e-3, check_like=True) + assert_series_equal(result_pyo3.scores, result_naive.scores, check_like=True) @given(comparison=comparisons(), v_init=st.floats())