Skip to content

Commit

Permalink
fix for minimal test
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen committed Jan 20, 2025
1 parent ec12a09 commit 7661b58
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 @@ -115,7 +115,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", ""), "content: file_to_compress\n")
self.assertEqual(f.getvalue().replace("\r", "").replace("\n", ""), "content: file_to_compress")
ham.remove()

def test_job_name(self):
Expand Down

0 comments on commit 7661b58

Please sign in to comment.