From 33ba2a9a658d886461cff733f9da1a747a7f5023 Mon Sep 17 00:00:00 2001 From: SWHL Date: Tue, 19 Nov 2024 22:42:06 +0800 Subject: [PATCH] test: update unit tests for different platform --- python/tests/test_ort.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tests/test_ort.py b/python/tests/test_ort.py index 2c88a65a6..ee5a1d5db 100644 --- a/python/tests/test_ort.py +++ b/python/tests/test_ort.py @@ -32,7 +32,7 @@ def test_long_img(): result, _ = engine(img_path) assert result is not None - assert len(result) >= 55 + assert len(result) >= 53 img_path.unlink()