()
| 3089 | |
| 3090 | |
| 3091 | def test_invalid_tensor_constructor_repr(): |
| 3092 | # ARROW-2638: prevent calling extension class constructors directly |
| 3093 | with pytest.raises(TypeError): |
| 3094 | repr(pa.Tensor([1])) |
| 3095 | |
| 3096 | |
| 3097 | def test_invalid_tensor_construction(): |