From 476a21cc7aa42b8c08033285093f5283a38d212b Mon Sep 17 00:00:00 2001 From: henryruhs Date: Wed, 3 Jun 2026 10:43:09 +0200 Subject: [PATCH] fix hashes --- tests/test_api_stream_video.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_api_stream_video.py b/tests/test_api_stream_video.py index 2bed3857..f5376b5d 100644 --- a/tests/test_api_stream_video.py +++ b/tests/test_api_stream_video.py @@ -141,7 +141,7 @@ def test_fill_video_deque(video_codec : VideoCodec) -> None: if is_macos(): if video_codec == 'av1': - assert create_hash(vision_frame.tobytes()) == 'eafd1fab' + assert create_hash(vision_frame.tobytes()) == '74e9926f' if video_codec == 'vp8': assert create_hash(vision_frame.tobytes()) == 'ff3ecb43' @@ -165,7 +165,7 @@ def test_encode_and_decode_video_frame(video_codec : VideoCodec) -> None: if is_macos(): if video_codec == 'av1': - assert create_hash(decode_buffer) == 'eafd1fab' + assert create_hash(decode_buffer) == '74e9926f' if video_codec == 'vp8': assert create_hash(decode_buffer) == 'ff3ecb43'