Skip to content

Commit

Permalink
pytest fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Perkins committed Oct 24, 2023
1 parent 1b1900a commit d83c541
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions darwin/future/tests/core/datasets/test_list_datasets.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from typing import List

import pytest
import responses
from requests.exceptions import HTTPError

Expand Down Expand Up @@ -43,5 +44,5 @@ def test_it_returns_an_error_if_the_client_returns_an_http_error(
)
with pytest.raises(HTTPError) as execinfo:
list_datasets(base_client)
assert execinfo.value.response.status_code == 400 # type: ignore

assert execinfo.value.response.status_code == 400 # type: ignore

0 comments on commit d83c541

Please sign in to comment.