Test repr of single-element Array has trailing comma.
()
| 72 | |
| 73 | |
| 74 | def test_repr_array_single() -> None: |
| 75 | """Test repr of single-element Array has trailing comma.""" |
| 76 | assert ReprPrint(tvm_ffi.Array([42])) == "(42,)" |
| 77 | |
| 78 | |
| 79 | def test_repr_array_empty() -> None: |