mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Fix missing arguments
This commit is contained in:
parent
59f31c7c6e
commit
25e2621ce5
@ -69,7 +69,7 @@ public class PreferencesTest {
|
||||
storage = mock(Storage.class);
|
||||
bisqEnvironment = mock(BisqEnvironment.class);
|
||||
|
||||
preferences = new Preferences(storage, bisqEnvironment, null, null, null, null, null, null);
|
||||
preferences = new Preferences(storage, bisqEnvironment, null, null, null, null, null, null, null);
|
||||
}
|
||||
|
||||
@Test
|
||||
|
@ -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);
|
||||
|
||||
public static final Preferences empty = make(a(Preferences));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user