Skip to content

Commit

Permalink
Fix test to current core
Browse files Browse the repository at this point in the history
  • Loading branch information
vuolleko committed Jan 20, 2017
1 parent 42f700c commit a778ac3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/test_wrapper.py
Expand Up @@ -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

0 comments on commit a778ac3

Please sign in to comment.