diff --git a/src/test/java/jssc/SerialNativeInterfaceTest.java b/src/test/java/jssc/SerialNativeInterfaceTest.java index d1100a947..a7f9353ea 100644 --- a/src/test/java/jssc/SerialNativeInterfaceTest.java +++ b/src/test/java/jssc/SerialNativeInterfaceTest.java @@ -10,7 +10,6 @@ import static org.junit.Assert.assertThat; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; -import static org.junit.Assume.assumeFalse; public class SerialNativeInterfaceTest { @@ -73,8 +72,6 @@ public void throwsNpeIfPassedBufferIsNull() throws Exception { @Test public void throwsIllegalArgumentExceptionIfPortHandleIllegal() throws Exception { - assumeFalse(SerialNativeInterface.getOsType() == SerialNativeInterface.OS_WINDOWS); - try{ testTarget.readBytes(999, 42); fail("Where is the exception?");