diff --git a/.github/workflows/fix-linting.yml b/.github/workflows/fix-linting.yml index 4409f1903b..674463f675 100644 --- a/.github/workflows/fix-linting.yml +++ b/.github/workflows/fix-linting.yml @@ -55,5 +55,5 @@ jobs: git config push.default upstream git add . git status - git commit -m "[automated] Fix linting with Prettier" + git commit -m "[automated] Fix code linting" git push diff --git a/tests/test_list.py b/tests/test_list.py index f71863cbca..2acef31a76 100644 --- a/tests/test_list.py +++ b/tests/test_list.py @@ -22,7 +22,7 @@ tmp_nxf_str = str(tmp_nxf) -class TestLint(unittest.TestCase): +class TestList(unittest.TestCase): """Class for list tests""" @mock.patch("subprocess.check_output")