Skip to content

Commit

Permalink
TST #203
Browse files Browse the repository at this point in the history
  • Loading branch information
prjemian committed Jul 28, 2019
1 parent ee6fdbe commit 1f1cbfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_filewriter.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ def test_writer_default_name(self):

# check that the #N line is written properly (issue #203)
scans = sdf.getScanNumbers()
self.assertFalse(108 in scans)
self.assertTrue("108" in scans)
self.assertNotIn(108, scans)
self.assertIn("108", scans)
scan = sdf.getScan(108)
self.assertEqual(scan.N[0], len(scan.L))

Expand Down

0 comments on commit 1f1cbfe

Please sign in to comment.