From 9087cbc5a74185fd2ec9cdb7f8e1baed555fe925 Mon Sep 17 00:00:00 2001 From: Dillon Laird Date: Thu, 10 Oct 2024 08:19:43 -0700 Subject: [PATCH] fix countgd integ test --- tests/integ/test_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integ/test_tools.py b/tests/integ/test_tools.py index 4f5c674f..9fd9f15c 100644 --- a/tests/integ/test_tools.py +++ b/tests/integ/test_tools.py @@ -413,4 +413,4 @@ def test_countgd_example_based_counting() -> None: image=img, ) assert len(result) == 24 - assert [res["label"] for res in result] == ["coin"] * 24 + assert [res["label"] for res in result] == ["object"] * 24