Skip to content

Commit

Permalink
Fix line too long
Browse files Browse the repository at this point in the history
  • Loading branch information
JasperCraeghs committed Apr 12, 2021
1 parent cdf9b35 commit 94c8b83
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_jira_interaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'"),
])

Expand Down

0 comments on commit 94c8b83

Please sign in to comment.