Skip to content

Commit

Permalink
eclipse-ditto#605: Fix test
Browse files Browse the repository at this point in the history
Signed-off-by: Vadim Guenther <vadim.guenther@bosch.io>
  • Loading branch information
VadimGue committed Feb 18, 2021
1 parent 839a03e commit d5442c4
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -95,12 +95,13 @@ public boolean equals(final Object o) {
return Objects.equals(initialDelay, that.initialDelay) &&
Objects.equals(interval, that.interval) &&
readJournalBatchSize == that.readJournalBatchSize &&
readSnapBatchSize == that.readSnapBatchSize &&
Objects.equals(rateConfig, that.rateConfig);
}

@Override
public int hashCode() {
return Objects.hash(initialDelay, interval, readJournalBatchSize, rateConfig);
return Objects.hash(initialDelay, interval, readJournalBatchSize, readSnapBatchSize, rateConfig);
}

@Override
Expand All @@ -109,6 +110,7 @@ public String toString() {
"initialDelay=" + initialDelay +
", interval=" + interval +
", readJournalBatchSize=" + readJournalBatchSize +
", readSnapBatchSize=" + readSnapBatchSize +
", rateConfig=" + rateConfig +
"]";
}
Expand Down

0 comments on commit d5442c4

Please sign in to comment.