Specify initial serialization buffer capacity for Payloads
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / persisted / CreateLocalHistoryPayloadTest.java
index a7d7e93ccf419f3c801b175e3c5699b5455b9356..e0aef362e94ab1ee6e37507918dc3b341192c3aa 100644 (file)
@@ -11,6 +11,6 @@ public class CreateLocalHistoryPayloadTest extends AbstractIdentifiablePayloadTe
 
     @Override
     CreateLocalHistoryPayload object() {
-        return CreateLocalHistoryPayload.create(nextHistoryId());
+        return CreateLocalHistoryPayload.create(nextHistoryId(), 512);
     }
-}
\ No newline at end of file
+}