forked from p34709852/monkey
UT: Remove unneeded fixture in SSHCredentialCollector tests
This commit is contained in:
parent
142136dd41
commit
5466bd5dba
|
@ -1,10 +1,9 @@
|
||||||
from unittest.mock import MagicMock
|
from unittest.mock import MagicMock
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
from pubsub.core import Publisher
|
|
||||||
|
|
||||||
from common.credentials import Credentials, SSHKeypair, Username
|
from common.credentials import Credentials, SSHKeypair, Username
|
||||||
from common.event_queue import IEventQueue, PyPubSubEventQueue
|
from common.event_queue import IEventQueue
|
||||||
from infection_monkey.credential_collectors import SSHCredentialCollector
|
from infection_monkey.credential_collectors import SSHCredentialCollector
|
||||||
|
|
||||||
|
|
||||||
|
@ -13,11 +12,6 @@ def patch_telemetry_messenger():
|
||||||
return MagicMock()
|
return MagicMock()
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
|
||||||
def event_queue() -> IEventQueue:
|
|
||||||
return PyPubSubEventQueue(Publisher())
|
|
||||||
|
|
||||||
|
|
||||||
def patch_ssh_handler(ssh_creds, monkeypatch):
|
def patch_ssh_handler(ssh_creds, monkeypatch):
|
||||||
monkeypatch.setattr(
|
monkeypatch.setattr(
|
||||||
"infection_monkey.credential_collectors.ssh_collector.ssh_handler.get_ssh_info",
|
"infection_monkey.credential_collectors.ssh_collector.ssh_handler.get_ssh_info",
|
||||||
|
|
Loading…
Reference in New Issue