Skip to content

Commit e630b33

Browse files
committed
reduce parallelization threshold to make tests cover more
1 parent a20aaa6 commit e630b33

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/test/java/org/apache/sysds/test/TestUtils.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2482,6 +2482,7 @@ public static FrameBlock generateRandomFrameBlock(int rows, int cols, long seed)
24822482
}
24832483

24842484
public static FrameBlock generateRandomFrameBlockWithSchemaOfStrings(int rows, int cols, long seed){
2485+
FrameLibApplySchema.PAR_ROW_THRESHOLD = 10;
24852486
ValueType[] schema = generateRandomSchema(cols, seed);
24862487
FrameBlock f = generateRandomFrameBlock(rows, schema, seed);
24872488
ValueType[] schemaString = UtilFunctions.nCopies(cols, ValueType.STRING);

0 commit comments

Comments
 (0)