Skip to content

Commit

Permalink
update test to use kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
stephprince committed Dec 23, 2024
1 parent 4bb9182 commit b653c9c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/unit/test_icephys.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,11 @@ def test_default(self):
def test_gain_optional(self):
electrode_name = GetElectrode()

pCS = PatchClampSeries('test_pCS', list(), 'unit',
electrode_name, timestamps=list())
pCS = PatchClampSeries(name='test_pCS',
data=list(),
unit='unit',
electrode=electrode_name,
timestamps=list())
self.assertIsNone(pCS.gain)

def test_sweepNumber_valid(self):
Expand Down

0 comments on commit b653c9c

Please sign in to comment.