Skip to content

Commit

Permalink
Fix: Unit tests for Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
n-thumann committed Nov 7, 2023
1 parent fa2f621 commit b4da991
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/nvd/cve_change_history/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@

from datetime import datetime
from typing import Any, Dict, List, Optional
from unittest import IsolatedAsyncioTestCase
from unittest.mock import AsyncMock, MagicMock, patch
from unittest.mock import MagicMock, patch
from uuid import UUID

from httpx import AsyncClient, Response

from pontos.nvd.cve_change_history.api import CVEChangeHistoryApi
from pontos.nvd.models.cve_change import Detail, EventName
from tests import AsyncMock, IsolatedAsyncioTestCase, aiter, anext
from tests.nvd import get_cve_change_data


Expand Down

0 comments on commit b4da991

Please sign in to comment.