From 45f3d17e4db503c13751532a327e2dd467c4b2bd Mon Sep 17 00:00:00 2001 From: milan Date: Fri, 21 Aug 2026 15:51:17 +0000 Subject: [PATCH] test(s3_v2): pin signing of base64 object keys with '=' padding Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- tests/test_litellm/integrations/test_s3_v2.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/test_litellm/integrations/test_s3_v2.py b/tests/test_litellm/integrations/test_s3_v2.py index b5b89d86cd2..eecbc369c05 100644 --- a/tests/test_litellm/integrations/test_s3_v2.py +++ b/tests/test_litellm/integrations/test_s3_v2.py @@ -1773,6 +1773,11 @@ S3_OBJECT_KEY_CASES = ( ("hash", "LOGS/Team#Hash/2026-08-04/log.json", "/LOGS/Team%23Hash/2026-08-04/log.json"), ("unicode", "LOGS/Equipe Café/2026-08-04/log.json", "/LOGS/Equipe%20Caf%C3%A9/2026-08-04/log.json"), ("percent", "LOGS/100%Team/2026-08-04/log.json", "/LOGS/100%25Team/2026-08-04/log.json"), + ( + "base64_equals", + "2026-08-21/time-05-29-36_resp_bGl0ZWxsbTpvcGVuYWk=.json", + "/2026-08-21/time-05-29-36_resp_bGl0ZWxsbTpvcGVuYWk%3D.json", + ), )