Skip to content

Commit

Permalink
Fix assertion style to satisfy codespell
Browse files Browse the repository at this point in the history
  • Loading branch information
smathot committed Jun 18, 2024
1 parent dce17d6 commit 3d6327e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_readandwrite.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def checkRead(self, path, fmt, pool=[]):
e = experiment(string=path)
self.assertEqual(e.var.title, u'New experiment')
for basename in pool:
self.assertIn(basename, e.pool)
assert basename in e.pool
osexpwriter(e, 'tmp.osexp')
r = osexpreader(e, 'tmp.osexp')
self.assertEqual(r.format, fmt)
Expand Down

0 comments on commit 3d6327e

Please sign in to comment.