Fix missing argument in test class

This commit is contained in:
Manfred Karrer 2019-04-17 18:49:02 -05:00
parent 8a5ba9487d
commit 1f1d7a31c6
No known key found for this signature in database
GPG key ID: 401250966A6B2C46

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);
public static final Preferences empty = make(a(Preferences));