Skip to content

Commit 75bb102

Browse files
mostrowskixgeodavic
authored andcommitted
[Bugfix] TypeError: 'NoneType' object is not callable (vllm-project#27410)
Signed-off-by: Marcin Ostrowski <marcinx.ostrowski@intel.com> Signed-off-by: George D. Torres <gdavtor@gmail.com>
1 parent 714fbd3 commit 75bb102

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/v1/core/test_kv_cache_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
def _auto_init_hash_fn(request):
5656
hash_fn: Callable
5757
if "hash_fn" in request.fixturenames:
58-
hash_fn = init_none_hash(request.getfixturevalue("hash_fn"))
58+
hash_fn = request.getfixturevalue("hash_fn")
5959
else:
6060
hash_fn = sha256
6161
init_none_hash(hash_fn)

0 commit comments

Comments
 (0)