Skip to content

Commit bcb9b23

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent acd4476 commit bcb9b23

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/unit/test_github.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1332,7 +1332,9 @@ def test_search_code(self):
13321332

13331333
def test_search_commits(self):
13341334
"""Verify the request to search for commits."""
1335-
i = self.instance.search_commits("css repo:octocat/Spoon-Knife", per_page=15)
1335+
i = self.instance.search_commits(
1336+
"css repo:octocat/Spoon-Knife", per_page=15
1337+
)
13361338
self.get_next(i)
13371339

13381340
self.session.get.assert_called_once_with(
@@ -1393,7 +1395,9 @@ def test_search_repositories(self):
13931395

13941396
def test_search_users(self):
13951397
"""Verify the request to search for users."""
1396-
i = self.instance.search_users("tom repos:>42 followers:>1000", per_page=15)
1398+
i = self.instance.search_users(
1399+
"tom repos:>42 followers:>1000", per_page=15
1400+
)
13971401
self.get_next(i)
13981402

13991403
self.session.get.assert_called_once_with(

0 commit comments

Comments
 (0)