From ec5073ef003d8d34a016e2386761ba0bbd425146 Mon Sep 17 00:00:00 2001 From: Isotr0py <2037008807@qq.com> Date: Wed, 6 Nov 2024 14:57:30 +0800 Subject: [PATCH] fix large_gpu_mark reason Signed-off-by: Isotr0py <2037008807@qq.com> --- tests/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils.py b/tests/utils.py index 16e21f68c7c96..00c7dabe16a7b 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -699,7 +699,7 @@ def large_gpu_mark(min_gb: int) -> pytest.MarkDecorator: return pytest.mark.skipif( memory_gb < min_gb, - reason=f"Need at least {memory_gb}GB GPU memory to run the test.", + reason=f"Need at least {min_gb}GB GPU memory to run the test.", )