From 5d2a49c4deccce2ded752b10bcf318a1b1f1e633 Mon Sep 17 00:00:00 2001 From: PyxieLouStar Date: Thu, 1 Feb 2024 10:35:11 -0800 Subject: [PATCH] fix indentation --- SSINS/tests/test_MF.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SSINS/tests/test_MF.py b/SSINS/tests/test_MF.py index c32ff66..3b90bf4 100644 --- a/SSINS/tests/test_MF.py +++ b/SSINS/tests/test_MF.py @@ -439,11 +439,11 @@ def test_negative_narrow(): ins.metric_ms = ins.mean_subtract() with pytest.warns(UserWarning, match="negative sig_thresh not supported"): - mf.apply_match_test(ins, event_record=True) + mf.apply_match_test(ins, event_record=True) # Check that the narrowband rfi was detected test_match_events_slc = [(slice(7, 8, None), slice(125, 126, None), 'narrow_%.3fMHz' % (ins.freq_array[125] * 10**(-6))), (slice(8, 9, None), slice(125, 126, None), 'narrow_%.3fMHz' % (ins.freq_array[125] * 10**(-6)))] for i, event in enumerate(test_match_events_slc): - assert ins.match_events[i][:-1] == test_match_events_slc[i], f"{i}th event is wrong" + assert ins.match_events[i][:-1] == test_match_events_slc[i], f"{i}th event is wrong"