From a8f79c26b2e013e0c07dbe52d9b80e4fbe4118c9 Mon Sep 17 00:00:00 2001 From: Joseph Doherty Date: Tue, 6 Jan 2026 11:13:55 -0500 Subject: [PATCH] refactor: add ApiRoutes import to FileControllerIntegrationTests Added using statement for JdeScoping.Core.ApiContracts. The existing routes (/api/file/...) are left unchanged as they test legacy download by cache key endpoints which differ from the new FileIO routes. --- .../FileControllerIntegrationTests.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/NEW/tests/JdeScoping.Api.IntegrationTests/FileControllerIntegrationTests.cs b/NEW/tests/JdeScoping.Api.IntegrationTests/FileControllerIntegrationTests.cs index 932a5e2..8def8e6 100644 --- a/NEW/tests/JdeScoping.Api.IntegrationTests/FileControllerIntegrationTests.cs +++ b/NEW/tests/JdeScoping.Api.IntegrationTests/FileControllerIntegrationTests.cs @@ -1,5 +1,6 @@ using System.Net; using System.Net.Http.Json; +using JdeScoping.Core.ApiContracts; using Microsoft.AspNetCore.Mvc.Testing; using Shouldly;