File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -360,6 +360,7 @@ def test_equality(self):
360360 ns0 .sampFreqUsed = 400
361361 self .assertNotEqual (ns0 , ns1 )
362362
363+
363364class TestNlxHeader (TestNeuralynxRawIO , unittest .TestCase ):
364365 def test_no_date_time (self ):
365366 filename = self .get_local_path ("neuralynx/NoDateHeader/NoDateHeader.nev" )
@@ -369,9 +370,10 @@ def test_no_date_time(self):
369370
370371 hdr = NlxHeader (filename , props_only = True )
371372
372- self .assertEqual (len (hdr ), 11 ) # 9 properties plus channel_ids and channel_names
373- self .assertEqual (hdr ['ApplicationName' ], 'Pegasus' )
374- self .assertEqual (hdr ['FileType' ], 'Event' )
373+ self .assertEqual (len (hdr ), 11 ) # 9 properties plus channel_ids and channel_names
374+ self .assertEqual (hdr ["ApplicationName" ], "Pegasus" )
375+ self .assertEqual (hdr ["FileType" ], "Event" )
376+
375377
376378if __name__ == "__main__" :
377379 unittest .main ()
You can’t perform that action at this time.
0 commit comments