Skip to content

Commit

Permalink
removes trailing underscore from method name
Browse files Browse the repository at this point in the history
  • Loading branch information
withtwoemms committed Dec 31, 2023
1 parent 6128315 commit bec7de2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/pokedex/db/test_client.py
Expand Up @@ -19,7 +19,7 @@ class TestClientCanCache(TestCase):
craft_response(resource("jigglypuff.response"), status_code=200),
],
)
def test_can_persist_request_(self, mock_request, mock_db_insert):
def test_can_persist_request(self, mock_request, mock_db_insert):
request_url = "https://pokeapi.co/api/v2/pokemon/39/"
mock_request.url = request_url
key, response_data = next(persist_requests((mock_request,)))
Expand Down

0 comments on commit bec7de2

Please sign in to comment.