8000
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 2ba7aef commit 6903325Copy full SHA for 6903325
lib/matplotlib/tests/test_axes.py
@@ -953,7 +953,7 @@ def test_mollweide_forward_inverse_closure():
953
ll2 = ax.transProjection.inverted().transform(xy)
954
955
# compare
956
- np.testing.assert_array_almost_equal(ll, ll2)
+ np.testing.assert_array_almost_equal(ll, ll2, 3)
957
958
@cleanup
959
def test_mollweide_inverse_forward_closure():
@@ -974,7 +974,7 @@ def test_mollweide_inverse_forward_closure():
974
xy2 = ax.transProjection.transform(ll)
975
976
977
- np.testing.assert_array_almost_equal(xy, xy2)
+ np.testing.assert_array_almost_equal(xy, xy2, 3)
978
979
if __name__=='__main__':
980
import nose
0 commit comments