Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Sep 13, 2023
1 parent a3111d6 commit 26fb385
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/spikeinterface/preprocessing/tests/test_zero_padding.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,9 @@ def test_trace_padded_recording_retrieve_traces_with_partial_padding(recording,

@pytest.mark.parametrize("preprocessing", ["bandpass_filter", "phase_shift"])
@pytest.mark.parametrize("padding_start, padding_end", [(5000, 5000), (5000, 0), (0, 5000)])
def test_trace_padded_recording_retrieve_full_recording_with_preprocessing(recording, padding_start, padding_end, preprocessing):
def test_trace_padded_recording_retrieve_full_recording_with_preprocessing(
recording, padding_start, padding_end, preprocessing
):
num_samples = recording.get_num_samples()
num_channels = recording.get_num_channels()

Expand Down Expand Up @@ -301,8 +303,5 @@ def test_trace_padded_recording_retrieve_full_recording_with_preprocessing(recor
assert np.all(padded_trace == padded_recording.fill_value)





if __name__ == "__main__":
test_zero_padding_channel()

0 comments on commit 26fb385

Please sign in to comment.