Skip to content

Commit

Permalink
Remove windows workaround in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pmrv authored Jan 21, 2025
1 parent 9316aee commit 426094d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/job/test_genericJob.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def test_compress_file_list(self):
with contextlib.redirect_stdout(io.StringIO(newline=os.linesep)) as f:
ham.files.file_to_compress.tail()
self.assertEqual(
f.getvalue().replace("\r", "").replace("\n", ""),
f.getvalue().replace("\n", ""),
"content: file_to_compress",
)
ham.remove()
Expand Down

0 comments on commit 426094d

Please sign in to comment.