From 5893d0cbd7e724d92fd893e5fdc9e5deff3c32ed Mon Sep 17 00:00:00 2001 From: Devavret Makkar Date: Mon, 27 May 2019 20:50:30 +0530 Subject: [PATCH] fix binop pytest bug. forgot to rebuild test --- python/cudf/tests/test_binops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/cudf/tests/test_binops.py b/python/cudf/tests/test_binops.py index beb81e94c34..facaa86907f 100644 --- a/python/cudf/tests/test_binops.py +++ b/python/cudf/tests/test_binops.py @@ -126,7 +126,7 @@ def test_series_logical_binop(lhstype, rhstype, binop, cubinop): result = cubinop(sr1, sr2) expect = binop(arr1, arr2) - assert_eq(result, expect) + utils.assert_eq(result, expect) _cmpops = [