chore: align local checks

This commit is contained in:
3252a8
2026-06-07 23:57:06 +03:00
parent a86f5d75e1
commit 2077c27252
6 changed files with 6 additions and 10 deletions
+1 -1
View File
@@ -592,7 +592,7 @@ class WebAppAssetTests(unittest.IsolatedAsyncioTestCase):
def test_frontend_nginx_proxies_shell_routes_for_dynamic_head(self):
nginx_conf = Path("deploy/docker/frontend/nginx.conf").read_text(encoding="utf-8")
marker = "location ~ ^/(?:$|login/password$|home$|install$|trial$|s/[a-f0-9]{32}$"
marker = 'location ~ "^/(?:$|login/password$|home$|install$|trial$|s/[a-f0-9]{32}$'
self.assertIn(marker, nginx_conf)
start = nginx_conf.index(marker)