Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 20, 2025
1 parent 7661b58 commit 40c5d28
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/unit/job/test_genericJob.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,10 @@ 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", ""), "content: file_to_compress")
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 40c5d28

Please sign in to comment.