Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fix reshape interoperability test
Browse files Browse the repository at this point in the history
  • Loading branch information
haojin2 committed Dec 25, 2019
1 parent efc4ad8 commit 75d69c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/python/unittest/test_numpy_interoperability.py
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ def _add_workload_reshape():
# OpArgMngr.add_workload('reshape', b, (2, 2), order='F') # Items are not equal with order='F'

a = np.array(_np.ones((0, 2)))
OpArgMngr.add_workload('reshape', a, -1, 2)
OpArgMngr.add_workload('reshape', a, (-1, 2))


def _add_workload_rint(array_pool):
Expand Down

0 comments on commit 75d69c2

Please sign in to comment.