Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def sample_json_string() -> str:


@pytest.fixture
def sample_json_dict() -> Dict[str, Any]:
def sample_json_dict() -> dict[str, Any]:
"""Return a sample JSON dictionary for testing.

Returns:
Expand All @@ -36,7 +36,7 @@ def sample_json_dict() -> Dict[str, Any]:


@pytest.fixture
def sample_json_list() -> List[Dict[str, Any]]:
def sample_json_list() -> list[dict[str, Any]]:
"""Return a sample JSON list for testing.

Returns:
Expand Down
Loading