Skip to content

Commit

Permalink
update rounding to see if that fixes windows issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rasbt committed Mar 18, 2017
1 parent 97c98cb commit e6daffc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlxtend/regressor/tests/test_stacking_regression.py
Expand Up @@ -59,7 +59,7 @@ def test_multivariate_class():
got = np.mean((stregr.predict(X2) - y2) ** 2.)
# there seems to be an issue with the following test on Windows
# sometimes via Appveyor
assert round(got, 2) == mse, print(got)
assert round(got, 2) == mse, got


def test_gridsearch():
Expand Down

0 comments on commit e6daffc

Please sign in to comment.