You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have many instances of assert pytest.approx(a, b) but the correct syntax is assert a == pytest.approx(b). The former syntax sets the relative tolerance to b.
We have many instances of
assert pytest.approx(a, b)but the correct syntax isassert a == pytest.approx(b). The former syntax sets the relative tolerance tob.