()
| 3147 | |
| 3148 | |
| 3149 | def test_invalid_tensor_constructor_repr(): |
| 3150 | # ARROW-2638: prevent calling extension class constructors directly |
| 3151 | with pytest.raises(TypeError): |
| 3152 | repr(pa.Tensor([1])) |
| 3153 | |
| 3154 | |
| 3155 | def test_invalid_tensor_construction(): |