From 4880e31ed167fcf3bf41fc361151f7388c852fc6 Mon Sep 17 00:00:00 2001 From: Barry Chen Date: Tue, 5 May 2026 09:01:45 -0500 Subject: [PATCH] test(integration): allow 204 (from nginx) on options req (#2277) --- tools/integration_tests/test_storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/integration_tests/test_storage.py b/tools/integration_tests/test_storage.py index c2e7db58..cf6f2233 100644 --- a/tools/integration_tests/test_storage.py +++ b/tools/integration_tests/test_storage.py @@ -2275,7 +2275,7 @@ def test_cors_allows_any_origin(st_ctx): "Origin": "http://test-website.com", "Access-Control-Request-Headers": "Content-Type", }, - status=200, + status=[200, 204], )