From f4eea3645ec60e094adfe1bdb44bba657597c459 Mon Sep 17 00:00:00 2001 From: brandon Date: Tue, 14 Jan 2025 14:53:16 -0800 Subject: [PATCH] fix --- test/integration/test_groundlight.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/test_groundlight.py b/test/integration/test_groundlight.py index bc45dfd7..545803ac 100644 --- a/test/integration/test_groundlight.py +++ b/test/integration/test_groundlight.py @@ -306,7 +306,7 @@ def test_submit_image_query_returns_yes(gl: Groundlight): def test_submit_image_query_returns_text(gl: Groundlight): # We use the "never-review" pipeline to guarantee a confident "yes" answer. detector = gl.get_or_create_detector( - name="Always same text", query="Is there a dog?", pipeline_config="constant-text" + name="Always same text", query="Is there a dog?", pipeline_config="constant-text-pred" ) image_query = gl.submit_image_query(detector=detector, image="test/assets/dog.jpeg", wait=10, human_review="NEVER") assert isinstance(image_query.text, str)