Skip to content

Commit

Permalink
update unit tests (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilkilic authored May 14, 2024
1 parent a8d5d56 commit d257166
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_efel_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def test_efel_threshold(self):
self.cell.extract_efeatures(
protocol_name="IDRest",
efeatures=["Spikecount"],
efel_settings={'Threshold': 40.}
efel_settings={'Threshold': 40}
)

recording = self.cell.recordings[0]
Expand All @@ -78,7 +78,7 @@ def test_efel_incorrect_threshold(self):
self.cell.extract_efeatures(
protocol_name="IDRest",
efeatures=["Spikecount"],
efel_settings={'Threshold': "40."}
efel_settings={'Threshold': ["40."]}
)

if __name__ == "__main__":
Expand Down

0 comments on commit d257166

Please sign in to comment.