Skip to content
Snippets Groups Projects

Fixing issues with the WebUI and the optical cybersecurity module

Merged Carlos Natalino Da Silva requested to merge fix/webui into develop
1 file
+ 2
0
Compare changes
  • Side-by-side
  • Inline
@@ -15,6 +15,7 @@
@@ -15,6 +15,7 @@
import logging
import logging
import uuid
import uuid
import queue
import queue
 
import time
from unittest.mock import patch
from unittest.mock import patch
import pytest
import pytest
@@ -36,6 +37,7 @@ LOGGER = logging.getLogger(__name__)
@@ -36,6 +37,7 @@ LOGGER = logging.getLogger(__name__)
def optical_attack_detector_service():
def optical_attack_detector_service():
_service = OpticalAttackDetectorService()
_service = OpticalAttackDetectorService()
_service.start()
_service.start()
 
time.sleep(2)
yield _service
yield _service
_service.stop()
_service.stop()
Loading