[EXEC-65] Fix faulty OS check which skips the test on Linux

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/exec/trunk@1723816 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/test/java/org/apache/commons/exec/issues/Exec65Test.java b/src/test/java/org/apache/commons/exec/issues/Exec65Test.java
index 928ce1e..877c7ba 100644
--- a/src/test/java/org/apache/commons/exec/issues/Exec65Test.java
+++ b/src/test/java/org/apache/commons/exec/issues/Exec65Test.java
@@ -38,7 +38,7 @@
     @Test(expected = ExecuteException.class, timeout = TEST_TIMEOUT)
     public void testExec65WitSleepUsingSleepCommandDirectly() throws Exception {
 
-        if (OS.isFamilyUnix() && OS.isFamilyMac()) {
+        if (OS.isFamilyUnix()) {
             final ExecuteWatchdog watchdog = new ExecuteWatchdog(WATCHDOG_TIMEOUT);
             final DefaultExecutor executor = new DefaultExecutor();
             final CommandLine command = new CommandLine("sleep");
@@ -103,7 +103,7 @@
     @Test(expected = ExecuteException.class, timeout = TEST_TIMEOUT)
     public void testExec65WithSudoUsingShellScript() throws Exception {
 
-        if (OS.isFamilyUnix() && OS.isFamilyMac()) {
+        if (OS.isFamilyUnix()) {
             final DefaultExecutor executor = new DefaultExecutor();
             executor.setStreamHandler(new PumpStreamHandler(System.out, System.err, System.in));
             executor.setWatchdog(new ExecuteWatchdog(WATCHDOG_TIMEOUT));