From e86cca0ac6ff3955471ab464bee8d79fb17b6b0e Mon Sep 17 00:00:00 2001 From: cnathe Date: Tue, 3 Mar 2026 11:52:30 -0600 Subject: [PATCH] Fix AssayImportRunAction integration tests (part 2) - include contextPath in URL, related to changes in this PR https://github.com/LabKey/platform/pull/7459 --- .../src/client/test/integration/AssayImportRunAction.ispec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/experiment/src/client/test/integration/AssayImportRunAction.ispec.ts b/experiment/src/client/test/integration/AssayImportRunAction.ispec.ts index f38134375c1..04f1105f12e 100644 --- a/experiment/src/client/test/integration/AssayImportRunAction.ispec.ts +++ b/experiment/src/client/test/integration/AssayImportRunAction.ispec.ts @@ -118,7 +118,7 @@ async function verifyPropertiesFilesOnServer( // Note: this is a hack to allow us to make requests to the webdav controller. The IntegrationTestServer // request method uses ActionURL to generate URLS, but webdav URLs are not ActionURLs, so we need to // override the AgentProvider to generate the proper webdav URL. - url = `/_webdav/${requestOptions.containerPath}/%40files/assaydata?method=JSON`; + url = `${LABKEY.contextPath}/_webdav/${requestOptions.containerPath}/%40files/assaydata?method=JSON`; return agent.get(url); }, requestOptions