We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32211cd commit e2c9f6eCopy full SHA for e2c9f6e
adaptive/tests/test_cquad.py
@@ -204,9 +204,7 @@ def test_tell_in_random_order(first_add_33=False):
204
assert all(ival.a == other_ival.a for ival, other_ival in zip(*ivals))
205
206
# 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
- ]
+ ivals = [{(i.a, i.b) for i in l.approximating_intervals} for l in learners]
210
assert ivals[0] == ivals[1]
211
212
# Test whether the igral is identical
0 commit comments