Skip to content

Commit 9b0fee7

Browse files
committed
update informatics gateway configurations
Signed-off-by: Sam Rooke <[email protected]>
1 parent 8e16d73 commit 9b0fee7

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

tests/IntegrationTests/WorkflowExecutor.IntegrationTests/appsettings.Test.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@
7070
}
7171
},
7272
"InformaticsGateway": {
73-
"apiHost": "http://localhost:5010"
73+
"apiHost": "http://localhost:5010",
74+
"username": "username",
75+
"password": "password"
7476
},
7577
"Kestrel": {
7678
"EndPoints": {

tests/UnitTests/WorkflowManager.Services.Tests/InformaticsGateway/InformaticsGatewayServiceTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public InformaticsGatewayServiceTests()
4242

4343
httpClientFactory.Setup(w => w.CreateClient(It.IsAny<string>())).Returns(httpClient.Object);
4444

45-
_options = Options.Create(new InformaticsGatewayConfiguration() { ApiHost = "https://localhost:5010" });
45+
_options = Options.Create(new InformaticsGatewayConfiguration() { ApiHost = "https://localhost:5010", Username = "username", Password = "password" });
4646

4747
InformaticsGatewayService = new InformaticsGatewayService(httpClientFactory.Object, _options);
4848
}

0 commit comments

Comments
 (0)