(T, m)
| 365 | |
| 366 | @pytest.mark.parametrize("T, m", test_data) |
| 367 | def test_match(T, m): |
| 368 | if T.ndim > 1: |
| 369 | T = T.copy() |
| 370 | T = T[0] |
| 371 | |
| 372 | Q = T[:m] |
| 373 | ref = aamp_match(Q, T) |
| 374 | comp = match(Q, T, normalize=False) |
| 375 | npt.assert_almost_equal(ref, comp) |
| 376 | |
| 377 | |
| 378 | @pytest.mark.parametrize("T, m", test_data) |
nothing calls this directly
no test coverage detected