Skip to content

Commit

Permalink
windows newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
wasade committed Apr 18, 2024
1 parent ec2dde2 commit 5152d5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion micov/tests/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def test_write_qiita_cov(self):

for name, exp in covs:
obs = tgz.extractfile(f'coverages/{name}')
self.assertEqual(obs.read().decode('utf-8'), exp)
self.assertEqual(obs.read().decode('utf-8').replace('\r\n', '\n'), exp)

def test_parse_qiita_coverages(self):
exp = pl.DataFrame([['G123', 1, 15],
Expand Down

0 comments on commit 5152d5f

Please sign in to comment.