Skip to content

Commit e2c9f6e

Browse files
committed
fix variable typo in the cquad test
1 parent 32211cd commit e2c9f6e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

adaptive/tests/test_cquad.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,9 +204,7 @@ def test_tell_in_random_order(first_add_33=False):
204204
assert all(ival.a == other_ival.a for ival, other_ival in zip(*ivals))
205205

206206
# Test if the approximating_intervals are the same
207-
ivals = [
208-
{(i.a, i.b) for i in learner.approximating_intervals} for l in learners
209-
]
207+
ivals = [{(i.a, i.b) for i in l.approximating_intervals} for l in learners]
210208
assert ivals[0] == ivals[1]
211209

212210
# Test whether the igral is identical

0 commit comments

Comments
 (0)