Skip to content

Commit ba13978

Browse files
committed
[mlir] fix broken python test
1 parent d53ff36 commit ba13978

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/test/python/ir/builtin_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ def testVectorType():
341341
print("Exception not produced")
342342

343343
try:
344-
VectorType.get(shape, f32, scalable=[False, True], scalable_dims=[42])
344+
VectorType.get(shape, f32, scalable_dims=[42])
345345
except ValueError as e:
346346
# CHECK: Scalable dimension index out of bounds.
347347
print(e)

0 commit comments

Comments
 (0)