()
| 3030 | |
| 3031 | |
| 3032 | def test_invalid_tensor_constructor_repr(): |
| 3033 | # ARROW-2638: prevent calling extension class constructors directly |
| 3034 | with pytest.raises(TypeError): |
| 3035 | repr(pa.Tensor([1])) |
| 3036 | |
| 3037 | |
| 3038 | def test_invalid_tensor_construction(): |