From c8c14af9f476cc3277e485feca4e320391ad8777 Mon Sep 17 00:00:00 2001 From: YueGuobin Date: Tue, 23 Jun 2026 23:19:07 +0800 Subject: [PATCH] Add /refresh to allowed public endpoints list in route auth test --- tests/api/routes/test_routes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/api/routes/test_routes.py b/tests/api/routes/test_routes.py index 98c4dcdd6..8d671b979 100644 --- a/tests/api/routes/test_routes.py +++ b/tests/api/routes/test_routes.py @@ -38,6 +38,7 @@ ALLOWED_CONTROLLER_ENDPOINTS = [ ("/v3/version", "POST"), ("/v3/access/users/login", "POST"), ("/v3/access/users/authenticate", "POST"), + ("/v3/access/users/refresh", "POST"), ("/v3/symbols", "GET"), ("/v3/symbols/{symbol_id:path}/raw", "GET"), ("/v3/symbols/{symbol_id:path}/dimensions", "GET"),