File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
csv/src/test/java/tools/jackson/dataformat/csv/deser
toml/src/test/java/tools/jackson/dataformat/toml Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public class CSVBigStringsTest extends ModuleTestBase
2121
2222 private final CsvMapper MAPPER = mapperForCsv ();
2323
24- private final static int TOO_LONG_STRING_VALUE_LEN = 20_000_100 ;
24+ private final static int TOO_LONG_STRING_VALUE_LEN = StreamReadConstraints . DEFAULT_MAX_STRING_LEN + 100 ;
2525
2626 private CsvMapper newCsvMapperWithUnlimitedStringSizeSupport () {
2727 CsvFactory csvFactory = CsvFactory .builder ()
Original file line number Diff line number Diff line change 99
1010public class TomlBigStringsTest extends TomlMapperTestBase
1111{
12- private final static int TOO_LONG_STRING_VALUE_LEN = 20_000_100 ;
12+ private final static int TOO_LONG_STRING_VALUE_LEN = StreamReadConstraints . DEFAULT_MAX_STRING_LEN + 100 ;
1313
1414 final static class StringWrapper
1515 {
You can’t perform that action at this time.
0 commit comments