From e223a3df5323f8fd06ac29e7fb8ca5bb8aed2c4d Mon Sep 17 00:00:00 2001 From: Henri Vuollekoski Date: Fri, 20 Jan 2017 19:18:33 +0200 Subject: [PATCH] Fix test to current core --- tests/unit/test_wrapper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/test_wrapper.py b/tests/unit/test_wrapper.py index 3f9b6e9c..e93db0b5 100644 --- a/tests/unit/test_wrapper.py +++ b/tests/unit/test_wrapper.py @@ -43,9 +43,9 @@ def test_echo_non_string_args(self): ret = wrapper(1) assert ret == 1 - def test_echo_1d_array_args(self): + def test_echo_2d_array_args(self): command = "echo {0}" wrapper = Wrapper(command, post=int) - ret = wrapper(np.array([1])) + ret = wrapper(np.array([[1]])) assert ret == 1