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

Commit ee11c0c

Browse files
author
Ying
committed
fix error in review
1 parent d0366f0 commit ee11c0c

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

tests/python/unittest/test_numpy_op.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1095,13 +1095,7 @@ def hybrid_forward(self, F, a):
10951095
types = ['float64', 'float32', 'float16', 'int64', 'int32', 'int8']
10961096
for oneType in types:
10971097
for hybridize in [True, False]:
1098-
for shape in [(),
1099-
(2,),
1100-
(2, 2),
1101-
(1, 2, 3),
1102-
(3, 0),
1103-
(1, 0, 2)
1104-
]:
1098+
for shape in [(), (2,), (2, 2), (1, 2, 3), (3, 0), (1, 0, 2)]:
11051099
test_ravel = TestRavel()
11061100
if hybridize:
11071101
test_ravel.hybridize()

0 commit comments

Comments
 (0)