Fix one test in Class ProcessExecutorTest

This commit is contained in:
jimdouk 2024-06-07 10:38:05 +03:00
parent 5277cf2b59
commit 805848e627

View file

@ -45,7 +45,11 @@ public class ProcessExecutorTest {
processExecutor.runCommandWithOutputHandling(command); processExecutor.runCommandWithOutputHandling(command);
}); });
// Check the exception message to ensure it is about the nonexistent command // Log the actual error message
assertTrue(thrown.getMessage().contains("CreateProcess error=2, The system cannot find the file specified")); 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);
} }
} }