Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 18, 2023
1 parent fb6158c commit bfa94df
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/unit/test_github.py
Original file line number Diff line number Diff line change
Expand Up @@ -1332,7 +1332,9 @@ def test_search_code(self):

def test_search_commits(self):
"""Verify the request to search for commits."""
i = self.instance.search_commits("css repo:octocat/Spoon-Knife", per_page=15)
i = self.instance.search_commits(
"css repo:octocat/Spoon-Knife", per_page=15
)
self.get_next(i)

self.session.get.assert_called_once_with(
Expand Down Expand Up @@ -1393,7 +1395,9 @@ def test_search_repositories(self):

def test_search_users(self):
"""Verify the request to search for users."""
i = self.instance.search_users("tom repos:>42 followers:>1000", per_page=15)
i = self.instance.search_users(
"tom repos:>42 followers:>1000", per_page=15
)
self.get_next(i)

self.session.get.assert_called_once_with(
Expand Down

0 comments on commit bfa94df

Please sign in to comment.