From 0de4f217abe2c73ce6df52743365302466f7bc00 Mon Sep 17 00:00:00 2001 From: Marcin Ostrowski Date: Fri, 14 Nov 2025 22:13:53 +0100 Subject: [PATCH] [Bugfix] TypeError: 'NoneType' object is not callable (#27410) Signed-off-by: Marcin Ostrowski --- tests/v1/core/test_kv_cache_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/v1/core/test_kv_cache_utils.py b/tests/v1/core/test_kv_cache_utils.py index df6a5f109874..24611a4aaa1b 100644 --- a/tests/v1/core/test_kv_cache_utils.py +++ b/tests/v1/core/test_kv_cache_utils.py @@ -55,7 +55,7 @@ pytestmark = pytest.mark.cpu_test def _auto_init_hash_fn(request): hash_fn: Callable if "hash_fn" in request.fixturenames: - hash_fn = init_none_hash(request.getfixturevalue("hash_fn")) + hash_fn = request.getfixturevalue("hash_fn") else: hash_fn = sha256 init_none_hash(hash_fn)