Skip to content

Commit

Permalink
Fix bucket size
Browse files Browse the repository at this point in the history
  • Loading branch information
sorenlouv committed Jul 14, 2020
1 parent 4f1ffdd commit 8ad98ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function ApiTest({ getService }: FtrProviderContext) {
);

expect(response.status).to.be(200);
expect(response.body).to.eql({ items: [], isAggregationAccurate: true, bucketSize: 100 });
expect(response.body).to.eql({ items: [], isAggregationAccurate: true, bucketSize: 1000 });
});
});

Expand Down

0 comments on commit 8ad98ab

Please sign in to comment.