From 7793c8716ab1d17aedc51cea9816dfccc1824f2a Mon Sep 17 00:00:00 2001 From: Carlos Natalino <carlos.natalino@chalmers.se> Date: Mon, 5 Feb 2024 16:28:51 +0000 Subject: [PATCH] Removing unnecessary import. --- src/opticalattackdetector/tests/test_unitary.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/opticalattackdetector/tests/test_unitary.py b/src/opticalattackdetector/tests/test_unitary.py index ecd59b917..cab888d59 100644 --- a/src/opticalattackdetector/tests/test_unitary.py +++ b/src/opticalattackdetector/tests/test_unitary.py @@ -21,7 +21,6 @@ import pytest from common.proto import dbscanserving_pb2 as dbscan from common.proto.optical_attack_detector_pb2 import DetectionRequest -from common.tests.MockServicerImpl_Monitoring import MockServicerImpl_Monitoring from opticalattackdetector.client.OpticalAttackDetectorClient import \ OpticalAttackDetectorClient @@ -58,8 +57,6 @@ def test_detect_attack( message = dbscan.DetectionResponse() message.cluster_indices.extend([0, 1, -1, -1, -1]) - # monitoring_mock = MockServicerImpl_Monitoring(queue_samples = queue.Queue()) - # TODO: remove the monitoring mock with patch( "opticalattackdetector.service.OpticalAttackDetectorServiceServicerImpl.attack_mitigator_client" ) as mitigator, patch( -- GitLab