Skip to content

Commit 6058453

Browse files
committed
Fix unit test
1 parent 1220b8b commit 6058453

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/CLI/Test/DockerRunnerTest.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ public async Task StartApplication()
148148
_configurationService.SetupGet(p => p.Configurations.HostDatabaseStorageMount).Returns("/database");
149149
_configurationService.SetupGet(p => p.Configurations.HostDataStorageMount).Returns("/storage");
150150
_configurationService.SetupGet(p => p.Configurations.HostLogsStorageMount).Returns("/logs");
151+
_configurationService.SetupGet(p => p.Configurations.HostPlugInsStorageMount).Returns("/plug-ins");
151152
_configurationService.SetupGet(p => p.Configurations.TempStoragePath).Returns("/tempdata");
152153
_configurationService.SetupGet(p => p.Configurations.LogStoragePath).Returns("/templogs");
153154

src/InformaticsGateway/appsettings.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@
4343
"accessKey": "admin",
4444
"accessToken": "password",
4545
"securedConnection": false,
46-
"region": "local"
46+
"region": "local",
47+
"executableLocation": "/bin/mc",
48+
"serviceName": "MinIO"
4749
}
4850
}
4951
},

0 commit comments

Comments
 (0)