Fix non-varargs call of varargs method with inexact argument type for last parameter exception warning

This commit is contained in:
Igor Motov 2011-06-16 23:46:07 -04:00 committed by kimchy
parent 4794345efb
commit 8470e79aed
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ public abstract class AbstractSimpleTranslogTests {
assertThat(snapshot.estimatedTotalOperations(), equalTo(3));
snapshot.release();
translog.add(new Translog.DeleteByQuery(new byte[]{4}, null, null));
translog.add(new Translog.DeleteByQuery(new byte[]{4}, null));
snapshot = translog.snapshot();
assertThat(snapshot, translogSize(4));
assertThat(snapshot.estimatedTotalOperations(), equalTo(4));