Skip to content

Commit

Permalink
mock merger count data
Browse files Browse the repository at this point in the history
  • Loading branch information
pendesen committed Jun 19, 2018
1 parent a8f929a commit 6eeba7e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ private List<CounterRecord> getCounterRecord(long userId, Random random) {
CounterRecord record1 = new CounterRecord();
record1.setUserId(userId);
record1.setType(CounterType.COUNTER_MATCHED);
record1.setCount(random.nextInt(3));
record1.setCount(random.nextInt(50));
records.add(record1);
return records;
}
Expand All @@ -218,7 +218,7 @@ private List<CounterRecord> getPCounterRecord(long userId, Random random) {
CounterRecord record = new CounterRecord();
record.setUserId(userId);
record.setType(type);
record.setCount(random.nextInt(5));
record.setCount(random.nextInt(500));
records.add(record);
}
return records;
Expand Down

0 comments on commit 6eeba7e

Please sign in to comment.