Skip to content

Commit dbfb224

Browse files
committed
format
1 parent dedf83b commit dbfb224

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/unit/gh_search_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ def test_get_filtered_results_many_calls(mock_client, mock_click):
128128
abort=True,
129129
)
130130

131+
131132
def test_get_filtered_results_rate_limiting_disabled(mock_client, mock_click):
132133
mock_client.get_rate_limit.side_effect = github.GithubException(404, "Not Found")
133134
mock_client.search_code.return_value = MockPaginatedList(*[], total_count=0)
@@ -137,4 +138,4 @@ def test_get_filtered_results_rate_limiting_disabled(mock_client, mock_click):
137138
ghsearch = GHSearch(mock_client, [mock_filter], True)
138139
ghsearch.get_filtered_results(["query", "org:bort"])
139140

140-
mock_click.echo.assert_any_call("(Rate limiting is disabled)")
141+
mock_click.echo.assert_any_call("(Rate limiting is disabled)")

0 commit comments

Comments
 (0)