Skip to content

Commit

Permalink
Fix compile error in SearchBinaryFnTest (apache#3201)
Browse files Browse the repository at this point in the history
  • Loading branch information
jon-wei authored and himanshug committed Jun 29, 2016
1 parent b24425a commit f3a3662
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ public void testAlphanumericMerge()
);

Result<SearchResultValue> actual = new SearchBinaryFn(
searchSortSpec, QueryGranularity.ALL, Integer.MAX_VALUE).apply(r1, r2);
searchSortSpec, QueryGranularities.ALL, Integer.MAX_VALUE).apply(r1, r2);
Assert.assertEquals(expected.getTimestamp(), actual.getTimestamp());
assertSearchMergeResult(expected.getValue(), actual.getValue());
}
Expand Down

0 comments on commit f3a3662

Please sign in to comment.