diff --git a/external/anomaly/tests/test_ote_training.py b/external/anomaly/tests/test_ote_training.py index 2158bbc5d6d..b99d6046d1c 100644 --- a/external/anomaly/tests/test_ote_training.py +++ b/external/anomaly/tests/test_ote_training.py @@ -123,7 +123,7 @@ def get_anomaly_test_action_classes() -> List[Type[BaseOTETestAction]]: ] -class AnomalyDetectionTrainingTestParameters(DefaultOTETestCreationParametersInterface): +class AnomalyClassificationTrainingTestParameters(DefaultOTETestCreationParametersInterface): def test_case_class(self) -> Type[OTETestCaseInterface]: return generate_ote_integration_test_case_class( get_anomaly_test_action_classes() @@ -278,12 +278,12 @@ def __call__(self, data_collector: DataCollector, results_prev_stages: OrderedDi return results -class TestOTEReallifeAnomalyDetection(OTETrainingTestInterface): +class TestOTEReallifeAnomalyClassification(OTETrainingTestInterface): """ The main class of running test in this file. """ PERFORMANCE_RESULTS = None # it is required for e2e system - helper = OTETestHelper(AnomalyDetectionTrainingTestParameters()) + helper = OTETestHelper(AnomalyClassificationTrainingTestParameters()) @classmethod def get_list_of_tests(cls, usecase: Optional[str] = None):