Skip to content

Commit

Permalink
[#noissue] Fix testcase failure
Browse files Browse the repository at this point in the history
  • Loading branch information
emeroad committed Jan 22, 2024
1 parent 281dff9 commit 162a516
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,9 @@ public void singleTableConcurrent() throws Exception {
@Test
public void multipleTablesConcurrent() throws Exception {
// Given
final int numTables = 50;
final int numRowIds = 100;
final int numColumnIds = 20;
final int numTables = 10;
final int numRowIds = 20;
final int numColumnIds = 10;
final int maxCallCount = 200;

List<TestDataSet> testDataSets = BulkIncrementerTestClazz.createRandomTestDataSetList(numTables, numRowIds, numColumnIds, maxCallCount);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,9 @@ public void singleTableConcurrent() throws Exception {
@Test
public void multipleTablesConcurrent() throws Exception {
// Given
final int numTables = 50;
final int numRowIds = 100;
final int numColumnIds = 20;
final int numTables = 10;
final int numRowIds = 20;
final int numColumnIds = 10;
final int maxCallCount = 200;

List<TestDataSet> testDataSets = BulkIncrementerTestClazz.createRandomTestDataSetList(numTables, numRowIds, numColumnIds, maxCallCount);
Expand Down

0 comments on commit 162a516

Please sign in to comment.