(data, fft)
| 602 | np.arange(5, dtype=np.int16), |
| 603 | ]) |
| 604 | def test_fft_with_integer_or_bool_input(data, fft): |
| 605 | # Regression test for gh-25819 |
| 606 | result = fft(data) |
| 607 | float_data = data.astype(np.result_type(data, 1.)) |
| 608 | expected = fft(float_data) |
| 609 | assert_array_equal(result, expected) |
nothing calls this directly
no test coverage detected
searching dependent graphs…