Skip to content

Commit 9bf75ff

Browse files
committed
minor fix
1 parent 90d14c8 commit 9bf75ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/java/edu/kit/datamanager/mappingservice/util/ShellRunnerUtilTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ void runValid(){
3636

3737
@Test
3838
void runInvalid() {
39-
assertThrows(MappingPluginException.class, () -> ShellRunnerUtil.run(null));
39+
assertThrows(MappingPluginException.class, () -> ShellRunnerUtil.run(""));
4040
assertThrows(MappingPluginException.class, () -> ShellRunnerUtil.run("blablusdhflakjdsfh"));
4141
assertThrows(MappingPluginException.class, () -> ShellRunnerUtil.run(-5, "echo", "test"));
4242
assertThrows(MappingPluginException.class, () -> ShellRunnerUtil.run(null, System.err, "echo", "test"));

src/test/resources/test-config/application-test-windows.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ management.endpoints.web.exposure.include=*
3939
# Mapping-Service specific settings
4040
##################################################
4141
# Absolute path to the local python interpreter
42-
mapping-service.pythonLocation=file://\hostedtoolcache\windows\Python\3.9.13\x64\python.exe
42+
mapping-service.pythonLocation=file:///C:/hostedtoolcache/windows/Python/3.9.13/x64/python.exe
4343
# Absolute path to the local gemma mappings folder
4444
mapping-service.mappingSchemasLocation=file://mapping-service

0 commit comments

Comments
 (0)