Skip to content

Commit

Permalink
match the design
Browse files Browse the repository at this point in the history
  • Loading branch information
cherylEnkidu committed Jul 26, 2023
1 parent 14584be commit 2f7a254
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ private void createMutationForCollection(String basePath, int totalSetCount) {
@Test
public void testCombinesIndexedWithNonIndexedResults() throws Exception {
// Every set contains 10 documents
final int numOfSet = 10;
final int numOfSet = 100;
// could overflow. Currently it is safe when numOfSet set to 1000 and running on macbook M1
long totalBeforeIndex = 0;
long totalAfterIndex = 0;
Expand All @@ -235,7 +235,7 @@ public void testCombinesIndexedWithNonIndexedResults() throws Exception {
double without = 1;
double with = 3;

for (int totalSetCount = 1; totalSetCount <= numOfSet; totalSetCount *= 10) {
for (int totalSetCount = 10; totalSetCount <= numOfSet; totalSetCount *= 10) {
// portion stands for the percentage of documents matching query
for (int portion = 0; portion <= 10; portion++) {
for (int numOfFields = 1; numOfFields <= 31; numOfFields += 10) {
Expand Down

0 comments on commit 2f7a254

Please sign in to comment.