From 8fc5975caf6ab4d774da24180d3dbc2e2f7b8186 Mon Sep 17 00:00:00 2001 From: Phil Ewels Date: Wed, 7 Sep 2022 10:57:46 +0200 Subject: [PATCH 1/2] Tweak confusing commit message --- .github/workflows/fix-linting.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 74f65c68b6cd2c01db7a9808c58cdc6f3972ad40 Mon Sep 17 00:00:00 2001 From: fabianegli Date: Wed, 7 Sep 2022 12:19:25 +0200 Subject: [PATCH 2/2] fix typo in test class name --- tests/test_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")