Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit 9317192

Browse files
committed
fix test compilation
1 parent 26cddd0 commit 9317192

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tests/ServiceLayer.Mesh.Tests/Functions/FileExtractFunctionTests.cs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ public class FileExtractFunctionTests
1515
{
1616
private readonly Mock<ILogger<FileExtractFunction>> _loggerMock;
1717
private readonly Mock<IMeshInboxService> _meshInboxServiceMock;
18-
private readonly Mock<IFileTransformQueueClient> _queueClientMock;
18+
private readonly Mock<IFileTransformQueueClient> _fileTransformQueueClientMock;
19+
private readonly Mock<IFileExtractQueueClient> _fileExtractQueueClientMock;
1920
private readonly Mock<IMeshFilesBlobStore> _blobStoreMock;
2021
private readonly ServiceLayerDbContext _dbContext;
2122
private readonly FileExtractFunction _function;
@@ -24,7 +25,8 @@ public FileExtractFunctionTests()
2425
{
2526
_loggerMock = new Mock<ILogger<FileExtractFunction>>();
2627
_meshInboxServiceMock = new Mock<IMeshInboxService>();
27-
_queueClientMock = new Mock<IFileTransformQueueClient>();
28+
_fileExtractQueueClientMock = new Mock<IFileExtractQueueClient>();
29+
_fileTransformQueueClientMock = new Mock<IFileTransformQueueClient>();
2830
_blobStoreMock = new Mock<IMeshFilesBlobStore>();
2931

3032
var options = new DbContextOptionsBuilder<ServiceLayerDbContext>()
@@ -41,7 +43,8 @@ public FileExtractFunctionTests()
4143
_loggerMock.Object,
4244
_meshInboxServiceMock.Object,
4345
_dbContext,
44-
_queueClientMock.Object,
46+
_fileTransformQueueClientMock.Object,
47+
_fileExtractQueueClientMock.Object,
4548
_blobStoreMock.Object
4649
);
4750
}

0 commit comments

Comments
 (0)