Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ pytest-cov==5.0.0
pytest-json-report==1.5.0
pyflakes==3.2.0
pylama==8.4.1
mock==5.2.0
mypy==1.11.1
types-PyYAML==6.0.12.20241230
types-requests==2.32.0.20241016
Expand Down
2 changes: 1 addition & 1 deletion test/eos/test_heredoc.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import mock
from unittest import mock
import pytest
from textwrap import dedent

Expand Down
3 changes: 2 additions & 1 deletion test/nxos/test_getters.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
"""Tests for getters."""

from unittest.mock import patch

from napalm.base.test.getters import BaseTestGetters, wrap_test_cases
from napalm.base.test import helpers
from napalm.base import models

import pytest
from mock import patch


def mock_time():
Expand Down
3 changes: 2 additions & 1 deletion test/nxos_ssh/test_getters.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
"""Tests for getters."""

from unittest.mock import patch

from napalm.base.test.getters import BaseTestGetters, wrap_test_cases
from napalm.base.test import helpers
from napalm.base import models

import pytest
from mock import patch


def mock_time():
Expand Down