From 4363b5e96189079f1819e1696210a3e018d0a22a Mon Sep 17 00:00:00 2001 From: TekH Date: Tue, 11 Aug 2026 10:30:15 +0200 Subject: [PATCH] test: Update integration tests to use moved request DTOs --- .../Integration/API/PdfAttachmentControllerTests.cs | 2 +- .../Integration/API/PdfValidationControllerTests.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DocumentOperator.Tests/Integration/API/PdfAttachmentControllerTests.cs b/DocumentOperator.Tests/Integration/API/PdfAttachmentControllerTests.cs index 2d397b0..364a400 100644 --- a/DocumentOperator.Tests/Integration/API/PdfAttachmentControllerTests.cs +++ b/DocumentOperator.Tests/Integration/API/PdfAttachmentControllerTests.cs @@ -1,5 +1,5 @@ -using DocumentService.API.Controllers; // For CheckPdfAttachmentsRequest DTO using DocumentService.Application.Common.DTOs; +using DocumentService.Client.Models.Requests; using FluentAssertions; using Microsoft.AspNetCore.Mvc.Testing; using System.Net; diff --git a/DocumentOperator.Tests/Integration/API/PdfValidationControllerTests.cs b/DocumentOperator.Tests/Integration/API/PdfValidationControllerTests.cs index 4d92e58..e4ee38f 100644 --- a/DocumentOperator.Tests/Integration/API/PdfValidationControllerTests.cs +++ b/DocumentOperator.Tests/Integration/API/PdfValidationControllerTests.cs @@ -1,5 +1,5 @@ -using DocumentService.API.Controllers; // For Base64Request DTOs using DocumentService.Application.Common.DTOs; +using DocumentService.Client.Models.Requests; using FluentAssertions; using Microsoft.AspNetCore.Mvc.Testing; using System.Net;