File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments