From 1a7200859d7b04ad4fa92971b8f9cd6fec6728c9 Mon Sep 17 00:00:00 2001 From: Manfred Karrer Date: Sun, 3 Feb 2019 11:17:24 +0100 Subject: [PATCH] Fix testclass with missing param --- core/src/test/java/bisq/core/user/UserPayloadModelVOTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/test/java/bisq/core/user/UserPayloadModelVOTest.java b/core/src/test/java/bisq/core/user/UserPayloadModelVOTest.java index 02bc99ee38..1bed53d8cf 100644 --- a/core/src/test/java/bisq/core/user/UserPayloadModelVOTest.java +++ b/core/src/test/java/bisq/core/user/UserPayloadModelVOTest.java @@ -43,7 +43,7 @@ public class UserPayloadModelVOTest { vo.setDisplayedAlert(new Alert("message", true, "version", new byte[]{12, -64, 12}, "string", null)); vo.setDevelopersFilter(new Filter(Lists.newArrayList(), Lists.newArrayList(), Lists.newArrayList(), Lists.newArrayList(), Lists.newArrayList(), Lists.newArrayList(), Lists.newArrayList(), Lists.newArrayList(), - false, Lists.newArrayList(), "string", new byte[]{10, 0, 0}, null)); + false, Lists.newArrayList(), false, "string", new byte[]{10, 0, 0}, null)); vo.setRegisteredArbitrator(ArbitratorTest.getArbitratorMock()); vo.setRegisteredMediator(MediatorTest.getMediatorMock()); vo.setAcceptedArbitrators(Lists.newArrayList(ArbitratorTest.getArbitratorMock()));