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 authored and greenbonebot committed Nov 10, 2023
1 parent 806e225 commit 0f9fa1d
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 0f9fa1d

Please sign in to comment.