From f358799c555bfd15311a3a987c93bce02396e8bd Mon Sep 17 00:00:00 2001 From: Mathieu Blondel Date: Fri, 19 Oct 2012 17:31:29 +0900 Subject: [PATCH] Fix test failure. Sorry about that. --- sklearn/utils/testing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sklearn/utils/testing.py b/sklearn/utils/testing.py index 0083601dd54ae..8414f1d124a24 100644 --- a/sklearn/utils/testing.py +++ b/sklearn/utils/testing.py @@ -18,11 +18,11 @@ # Conveniently import all assertions in one place. from nose.tools import assert_equal -from nose.tools import assert_almost_equal from nose.tools import assert_true from nose.tools import assert_false from nose.tools import assert_raises +from numpy.testing import assert_almost_equal from numpy.testing import assert_array_equal from numpy.testing import assert_array_almost_equal