Skip to content
Prev Previous commit
sort
  • Loading branch information
Kilo59 committed Mar 26, 2020
commit b884ffd98bffce27f80d1cf3d1df64b4443d08f7
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
Global conftest file for shared pytest fixtures
"""
import pytest
from fastapi.testclient import TestClient

from app.main import APP
from fastapi.testclient import TestClient


@pytest.fixture
Expand Down
2 changes: 1 addition & 1 deletion tests/test_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
from unittest import mock

import pytest
from fastapi.testclient import TestClient

import app
from app import services
from app.main import APP
from fastapi.testclient import TestClient

from .test_jhu import DATETIME_STRING, mocked_requests_get, mocked_strptime_isoformat

Expand Down