Browse Source

Fix tests for Python 3.8

pull/14419/head
Sebastián Ramírez 8 months ago
parent
commit
df8f5cd6f3
  1. 3
      tests/test_security_scopes.py

3
tests/test_security_scopes.py

@ -1,8 +1,9 @@
from typing import Annotated, Dict from typing import Dict
import pytest import pytest
from fastapi import Depends, FastAPI, Security from fastapi import Depends, FastAPI, Security
from fastapi.testclient import TestClient from fastapi.testclient import TestClient
from typing_extensions import Annotated
@pytest.fixture(name="call_counter") @pytest.fixture(name="call_counter")

Loading…
Cancel
Save