Map bits type to primitive boolean
[mdsal.git] / binding / mdsal-binding-generator / src / test / java / org / opendaylight / mdsal / binding / generator / impl / BitAndUnionTOEnclosingTest.java
index 7cb23aa7ffb5bd07543427247fefd20a3ee22fa1..fb0a93153dd3190af7f9810a8095bb8d6800ddde 100644 (file)
@@ -206,9 +206,9 @@ public class BitAndUnionTOEnclosingTest {
         assertNotNull("secondBit property wasn't found", secondBitProperty);
         assertNotNull("thirdBit property wasn't found", thirdBitProperty);
 
-        assertEquals("firstBit property has incorrect type", "Boolean", firstBitProperty.getReturnType().getName());
-        assertEquals("secondBit property has incorrect type", "Boolean", secondBitProperty.getReturnType().getName());
-        assertEquals("thirdBit property has incorrect type", "Boolean", thirdBitProperty.getReturnType().getName());
+        assertEquals("firstBit property has incorrect type", "boolean", firstBitProperty.getReturnType().getName());
+        assertEquals("secondBit property has incorrect type", "boolean", secondBitProperty.getReturnType().getName());
+        assertEquals("thirdBit property has incorrect type", "boolean", thirdBitProperty.getReturnType().getName());
 
         GeneratedProperty uint32Property = null;
         GeneratedProperty stringProperty = null;