Skip to content

Commit ae7adf3

Browse files
committed
Fix test import: Update REPipeline to ReversePipeline
- Fix integration test import error in test_pipeline.py - Update class name references to match actual implementation - Resolve CI/CD test collection failure
1 parent d7c7977 commit ae7adf3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/integration/test_pipeline.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
sys.path.append(str(Path(__file__).parent.parent.parent))
99

1010
# Import necessary components for integration testing
11-
from src.core.pipeline import REPipeline
11+
from src.core.pipeline import ReversePipeline
1212
from src.core.config import Config
1313

1414

@@ -67,7 +67,7 @@ def pipeline(self, temp_config_file, monkeypatch):
6767

6868
# Create pipeline with config
6969
config = Config(temp_config_file)
70-
pipeline = REPipeline(config)
70+
pipeline = ReversePipeline(config)
7171
return pipeline
7272

7373
def test_pipeline_initialization(self, pipeline):
@@ -108,7 +108,7 @@ def __init__(self):
108108
lambda self, path: MockBinaryInfo())
109109

110110
# Mock _save_results to do nothing
111-
monkeypatch.setattr(src.core.pipeline.REPipeline,
111+
monkeypatch.setattr(src.core.pipeline.ReversePipeline,
112112
'_save_results',
113113
lambda self: None)
114114

0 commit comments

Comments
 (0)