(x)
| 215 | def test_transform_failure_valueerror(): |
| 216 | # GH 40211 |
| 217 | def op(x): |
| 218 | if np.sum(np.sum(x)) < 10: |
| 219 | raise ValueError |
| 220 | return x |
| 221 | |
| 222 | df = DataFrame({"A": [1, 2, 3], "B": [400, 500, 600]}) |
| 223 | msg = "Transform function failed" |
no test coverage detected