diff --git a/tests/python/test_matrix.py b/tests/python/test_matrix.py index b58f9599d72a9..333ee50fd2295 100644 --- a/tests/python/test_matrix.py +++ b/tests/python/test_matrix.py @@ -875,7 +875,7 @@ def test(): test() -@test_utils.test() +@test_utils.test(debug=True) def test_local_matrix_scalarize(): @ti.kernel def func(): @@ -893,10 +893,8 @@ def func(): # Unary x[1, 1] = ti.sqrt(x[1, 0]) - # TODO: test for dynamic indexing - assert (x[0, 0] == 100.) - assert (x[0, 1] == 200.) + assert (x[0, 1] == 100.) assert (x[1, 0] == 200.) assert (x[1, 1] < 14.14214) assert (x[1, 1] > 14.14213)