mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 10:49:06 +01:00
test avatars: get rid of the 1%
This commit is contained in:
@@ -186,7 +186,7 @@ public class TestDataCreatorImpl implements TestDataCreator {
|
||||
transportPropertyManager.addRemoteProperties(txn, contactId, props);
|
||||
return db.getContact(txn, contactId);
|
||||
});
|
||||
if (random.nextInt(100) + 1 < avatarPercent) addAvatar(contact);
|
||||
if (random.nextInt(100) + 1 <= avatarPercent) addAvatar(contact);
|
||||
|
||||
if (LOG.isLoggable(INFO)) {
|
||||
LOG.info("Added contact " + remote.getName() +
|
||||
|
||||
Reference in New Issue
Block a user