From 4fbda17c1057788f2d28ddbdd571a9a4e769034b Mon Sep 17 00:00:00 2001 From: zm711 <92116279+zm711@users.noreply.github.com> Date: Mon, 11 Sep 2023 17:54:20 -0400 Subject: [PATCH] fix typo --- test/test_spike_analysis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_spike_analysis.py b/test/test_spike_analysis.py index 5fc3dd8..e947f7d 100644 --- a/test/test_spike_analysis.py +++ b/test/test_spike_analysis.py @@ -93,7 +93,7 @@ def test_fr_data(sa): assert sa.mean_firing_rate["test"][0, 0, 0] == 0.5 assert sa.mean_firing_rate["test"][1, 0, 2] == 1.0 - sa.get_raw_firing_rate(time_bin_ms=1000, bsl_window=[0, 50], fr_window=[0, 300], mode="bsl") + sa.get_raw_firing_rate(time_bin_ms=1000, bsl_window=[0, 50], fr_window=[0, 300], mode="bsl-subtracted") print(sa.mean_firing_rate) assert round(sa.mean_firing_rate["test"][0, 0, 0], 2) == 0.42