Instance identifier support
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / java / org / opendaylight / controller / sal / restconf / impl / test / RestCodecExceptionsTest.java
index 36da6d669a237b963f8b550e2b5fe6762dd83b97..2b6efbdc4d40363577a7d024eb563fc204d05838 100644 (file)
@@ -1,6 +1,6 @@
 package org.opendaylight.controller.sal.restconf.impl.test;
 
-import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.*;
 import static org.mockito.Mockito.mock;
 
 import org.junit.Test;
@@ -24,10 +24,7 @@ public class RestCodecExceptionsTest {
         IdentityrefTypeDefinition mockedIidentityrefType = mock(IdentityrefTypeDefinition.class);
 
         Codec<Object, Object> codec = RestCodec.from(mockedIidentityrefType, null);
-        String serializedValue = (String) codec.deserialize("incorrect value"); // IdentityValuesDTO
-                                                                                // object
-        // expected
-        assertEquals("incorrect value", serializedValue);
+        assertNull(codec.deserialize("incorrect value"));
     }
 
 }