Test repr of Array containing strings.
()
| 82 | |
| 83 | |
| 84 | def test_repr_array_nested_strings() -> None: |
| 85 | """Test repr of Array containing strings.""" |
| 86 | assert ReprPrint(tvm_ffi.Array(["a", "b"])) == '("a", "b")' |
| 87 | |
| 88 | |
| 89 | def test_repr_array_python_repr() -> None: |