Skip to content

Commit 0e1d1f3

Browse files
committed
rename 'tells' -> 'tell'
1 parent a9cbbf9 commit 0e1d1f3

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

adaptive/tests/test_cquad.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def test_adding_points_and_skip_one_point():
161161
np.testing.assert_almost_equal(learner.igral, learner2.igral)
162162

163163

164-
def test_tells_in_random_order(first_add_33=False):
164+
def test_tell_in_random_order(first_add_33=False):
165165
from operator import attrgetter
166166
import random
167167
tol = 1e-10
@@ -220,8 +220,8 @@ def test_tells_in_random_order(first_add_33=False):
220220
assert np.isfinite(l.err)
221221

222222

223-
def test_tells_in_random_order_first_add_33():
224-
test_tells_in_random_order(first_add_33=True)
223+
def test_tell_in_random_order_first_add_33():
224+
test_tell_in_random_order(first_add_33=True)
225225

226226

227227
def test_approximating_intervals():

adaptive/tests/test_learner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ def test_adding_non_chosen_data(learner_type, f, learner_kwargs):
223223

224224
@run_with(xfail(Learner1D), xfail(Learner2D), AverageLearner)
225225
def test_point_adding_order_is_irrelevant(learner_type, f, learner_kwargs):
226-
"""The order of calls to 'tells' between calls to 'ask'
226+
"""The order of calls to 'tell' between calls to 'ask'
227227
is arbitrary.
228228
229229
This test will fail for the Learner1D for the same reason as described in

0 commit comments

Comments
 (0)