Skip to content

Commit dd9c907

Browse files
committed
fix: unused imports
1 parent f12f612 commit dd9c907

File tree

4 files changed

+0
-6
lines changed

4 files changed

+0
-6
lines changed

backend/tests/integration/test_job_store_connector.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import pytest
21
from database.job_store_connector import JobStoreConnector
32

43

backend/tests/unit/test_chunker.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import pytest
21
from preprocessing.chunker import Chunker
32
from models.metadata import VideoChunk
43

@@ -98,8 +97,6 @@ def test_fallback_when_no_scenes_detected(self, chunker, mocker, sample_video_5s
9897

9998
def test_fallback_creates_fixed_duration_chunks(self, chunker, sample_video_5s):
10099
"""Verify fallback creates approximately equal chunks."""
101-
# Force fallback by mocking detect
102-
import pytest_mock
103100
chunks = chunker._fallback_chunking(str(sample_video_5s), video_id="test")
104101

105102
if len(chunks) > 1:

backend/tests/unit/test_compressor.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
Tests frame resizing, compression, and memory optimization.
55
"""
66

7-
import pytest
87
import numpy as np
98
from preprocessing.compressor import Compressor
109

backend/tests/unit/test_frame_extractor.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import pytest
21
import numpy as np
32
from preprocessing.frame_extractor import FrameExtractor
43
from models.metadata import VideoChunk

0 commit comments

Comments
 (0)