Merge "Changed codec for Identityref in JSON transformation"
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / java / org / opendaylight / controller / sal / restconf / impl / test / RestCodecExceptionsTest.java
index fcc4c02a6f5e05401ec5e18ab0dc0902747d31bd..36da6d669a237b963f8b550e2b5fe6762dd83b97 100644 (file)
@@ -13,7 +13,7 @@ public class RestCodecExceptionsTest {
 
     @Test
     public void serializeExceptionTest() {
-        Codec<Object, Object> codec = RestCodec.from(new BitsType(null));
+        Codec<Object, Object> codec = RestCodec.from(new BitsType(null), null);
         String serializedValue = (String) codec.serialize("incorrect value"); // set
                                                                               // expected
         assertEquals("incorrect value", serializedValue);
@@ -23,7 +23,7 @@ public class RestCodecExceptionsTest {
     public void deserializeExceptionTest() {
         IdentityrefTypeDefinition mockedIidentityrefType = mock(IdentityrefTypeDefinition.class);
 
-        Codec<Object, Object> codec = RestCodec.from(mockedIidentityrefType);
+        Codec<Object, Object> codec = RestCodec.from(mockedIidentityrefType, null);
         String serializedValue = (String) codec.deserialize("incorrect value"); // IdentityValuesDTO
                                                                                 // object
         // expected