Fix tests

This commit is contained in:
sqrrm 2019-09-01 19:10:26 +02:00
parent a13600f2f3
commit f30b68b39f
No known key found for this signature in database
GPG key ID: 45235F9EF87089EC
2 changed files with 2 additions and 2 deletions

View file

@ -61,7 +61,7 @@ public class PreferencesTest {
storage = mock(Storage.class);
bisqEnvironment = mock(BisqEnvironment.class);
preferences = new Preferences(storage, bisqEnvironment, null, null, null, null, null, null, null);
preferences = new Preferences(storage, bisqEnvironment, null, null, null, null, null, null, null, null);
}
@Test

View file

@ -43,7 +43,7 @@ public class PreferenceMakers {
lookup.valueOf(btcNodesFromOptions, new SameValueDonor<String>(null)),
lookup.valueOf(useTorFlagFromOptions, new SameValueDonor<String>(null)),
lookup.valueOf(referralID, new SameValueDonor<String>(null)),
null, null, null, null);
null, null, null, null, null);
public static final Preferences empty = make(a(Preferences));