From 94c8b83e7c1c8f819907a55b7a76185aa9a72f2b Mon Sep 17 00:00:00 2001 From: Jasper Craeghs Date: Mon, 12 Apr 2021 16:03:10 +0200 Subject: [PATCH] Fix line too long --- tests/test_jira_interaction.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_jira_interaction.py b/tests/test_jira_interaction.py index 5ce56d0..c9563bf 100644 --- a/tests/test_jira_interaction.py +++ b/tests/test_jira_interaction.py @@ -131,7 +131,8 @@ def test_create_jira_issues_unique(self, jira): basic_auth=('my_username', 'my_password'))) self.assertEqual(jira_mock.search_issues.call_args_list, [ - mock.call("project=MLX12345 and summary ~ 'MEETING\\\\-12345_2\\\\: Caption for action 1\\\\?'"), + mock.call( + "project=MLX12345 and summary ~ 'MEETING\\\\-12345_2\\\\: Caption for action 1\\\\?'"), mock.call("project=MLX12345 and summary ~ 'Caption for action 2'"), ])