mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2024-11-11 02:10:11 +01:00
Fix one test in Class ProcessExecutorTest
This commit is contained in:
parent
5277cf2b59
commit
805848e627
@ -45,7 +45,11 @@ public class ProcessExecutorTest {
|
||||
processExecutor.runCommandWithOutputHandling(command);
|
||||
});
|
||||
|
||||
// Check the exception message to ensure it is about the nonexistent command
|
||||
assertTrue(thrown.getMessage().contains("CreateProcess error=2, The system cannot find the file specified"));
|
||||
// Log the actual error message
|
||||
System.out.println("Caught IOException: " + thrown.getMessage());
|
||||
|
||||
// Check the exception message to ensure it indicates the command was not found
|
||||
String errorMessage = thrown.getMessage();
|
||||
assertTrue(errorMessage.contains("error=2") || errorMessage.contains("No such file or directory"), "Unexpected error message: " + errorMessage);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user