Skip to content

Commit ce75508

Browse files
committed
fix: update Unit test signature
1 parent 802309b commit ce75508

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/UnitTests/TransformDataServiceTests/TransformDataServiceTests/TransformDataLookupFacadeTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class TransformDataLookupFacadeTests
2424
private Mock<IDataServiceClient<BsSelectOutCode>> _outcodeClientMock = new();
2525
private readonly Mock<IDataServiceClient<LanguageCode>> _languageCodeClientMock = new();
2626
private Mock<IDataServiceClient<BsSelectGpPractice>> _gpPracticeClientMock = new();
27-
27+
private Mock<IDataServiceClient<CurrentPosting>> _currentPostingClientMock = new();
2828
private Mock<IDataServiceClient<ExcludedSMULookup>> _excludedSMUClient = new();
2929

3030
private Mock<ILogger<TransformDataLookupFacade>> _logger = new();
@@ -55,7 +55,7 @@ public TransformDataLookupFacadeTests()
5555
};
5656

5757
_memoryCache.Setup(m => m.TryGetValue(It.IsAny<object>(), out dummy)).Returns(true);
58-
_sut = new(_outcodeClientMock.Object, _gpPracticeClientMock.Object, _languageCodeClientMock.Object, _excludedSMUClient.Object, _logger.Object, _memoryCache.Object, _config.Object);
58+
_sut = new(_outcodeClientMock.Object, _gpPracticeClientMock.Object, _languageCodeClientMock.Object, _excludedSMUClient.Object, _currentPostingClientMock.Object, _logger.Object, _memoryCache.Object, _config.Object);
5959
}
6060

6161
[TestMethod]

0 commit comments

Comments
 (0)