Skip to content

Commit

Permalink
Fix flake8 W503
Browse files Browse the repository at this point in the history
  • Loading branch information
JokeWaumans committed Aug 13, 2024
1 parent ca12134 commit bb21581
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_coverity.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@ def test_get_defects(self):

# urls that are used in GET or POST requests
column_keys_url = (
coverity_conf_service.api_endpoint
+ "/issues/columns?queryType=bySnapshot&retrieveGroupByColumns=false"
coverity_conf_service.api_endpoint +
"/issues/columns?queryType=bySnapshot&retrieveGroupByColumns=false"
)
checkers_url = f"{coverity_conf_service.api_endpoint}/checkerAttributes/checker"
stream_url = f"{coverity_conf_service.api_endpoint}/streams/{fake_stream}"
issues_url = (
coverity_conf_service.api_endpoint
+ "/issues/search?includeColumnLabels=true&offset=0&queryType=bySnapshot&rowCount=-1&sortOrder=asc"
coverity_conf_service.api_endpoint +
"/issues/search?includeColumnLabels=true&offset=0&queryType=bySnapshot&rowCount=-1&sortOrder=asc"
)

with requests_mock.mock() as mocker:
Expand Down

0 comments on commit bb21581

Please sign in to comment.