Add DISCLAIMER-WIP to rat-plugin excludes.

Remove platform endian sensitive test.
diff --git a/pom.xml b/pom.xml
index 5036cb3..1dd6ffc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -302,7 +302,7 @@
               <exclude>**/test/resources/**/*.txt</exclude>
               <exclude>LICENSE</exclude>
               <exclude>NOTICE</exclude>
-              <exclude>DISCLAIMER</exclude>
+              <exclude>DISCLAIMER-WIP</exclude>
             </excludes>
           </configuration>
         </plugin>
diff --git a/src/test/java/org/apache/datasketches/memory/WritableMemoryTest.java b/src/test/java/org/apache/datasketches/memory/WritableMemoryTest.java
index 7cefd14..2020dda 100644
--- a/src/test/java/org/apache/datasketches/memory/WritableMemoryTest.java
+++ b/src/test/java/org/apache/datasketches/memory/WritableMemoryTest.java
@@ -40,14 +40,6 @@
   }
 
   @Test
-  public void wrapBigEndian2() {
-    ByteBuffer bb = ByteBuffer.allocate(64);
-    WritableBuffer wbuf = WritableBuffer.wrap(bb);
-    assertFalse(wbuf.getTypeByteOrder() == BaseState.nativeByteOrder);
-    assertEquals(wbuf.getTypeByteOrder(), ByteOrder.BIG_ENDIAN);
-  }
-
-  @Test
   public void wrapBigEndianAsLittle() {
     ByteBuffer bb = ByteBuffer.allocate(64);
     bb.putChar(0, (char)1); //as BE