From f3e46b8cc7dc49befa6d4aa1ec4227c985b10677 Mon Sep 17 00:00:00 2001 From: Julian Risch Date: Tue, 16 Nov 2021 09:55:09 +0100 Subject: [PATCH] fix import of EvaluationResult in test case --- test/test_pipeline_extractive_qa.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/test_pipeline_extractive_qa.py b/test/test_pipeline_extractive_qa.py index 4b2f783a8..8dbed428c 100644 --- a/test/test_pipeline_extractive_qa.py +++ b/test/test_pipeline_extractive_qa.py @@ -4,9 +4,8 @@ from haystack.pipeline import ( TranslationWrapperPipeline, ExtractiveQAPipeline ) -from haystack.pipelines.base import EvaluationResult -from haystack.schema import Answer, Document, Label, MultiLabel, Span +from haystack.schema import Answer, Document, Label, MultiLabel, Span, EvaluationResult @pytest.mark.slow