From e46117a5b1ce7f8c4445868f377b870831a6bb93 Mon Sep 17 00:00:00 2001 From: Lisa Kim Date: Thu, 9 Jan 2025 13:37:50 -0800 Subject: [PATCH] Fix enterprise webassets path for testing (#50927) --- lib/web/apiserver_test_utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/web/apiserver_test_utils.go b/lib/web/apiserver_test_utils.go index 9e6fff840b514..9a98415a504ba 100644 --- a/lib/web/apiserver_test_utils.go +++ b/lib/web/apiserver_test_utils.go @@ -34,7 +34,7 @@ func NewDebugFileSystem(isEnterprise bool) (http.FileSystem, error) { assetsPath := "../../webassets/teleport" if isEnterprise { - assetsPath = "../../../webassets/teleport" + assetsPath = "../../../webassets/e/teleport" } // Ensure we have the built assets available before continuing.