Skip to content

Commit 01305c8

Browse files
committed
Mark #337 fixed for 3.0 as well, after fixing test
1 parent e3fd602 commit 01305c8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

yaml/src/test/java/tools/jackson/dataformat/yaml/failing/StreamingParse337Test.java renamed to yaml/src/test/java/tools/jackson/dataformat/yaml/deser/StreamingParse337Test.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package tools.jackson.dataformat.yaml.failing;
1+
package tools.jackson.dataformat.yaml.deser;
22

33
import tools.jackson.core.JacksonException;
44
import tools.jackson.core.JsonParser;
@@ -34,8 +34,7 @@ public void testYamlParseFailsWhenCodePointLimitVerySmall() throws Exception
3434
+" - \"Max Power\"\n"
3535
;
3636
LoadSettings loaderOptions = LoadSettings.builder()
37-
// !!! This is where we would limit maximum size
38-
// .setCodePointLimit(5)
37+
.setCodePointLimit(5)
3938
.build();
4039
YAMLFactory yamlFactory = YAMLFactory.builder()
4140
.loadSettings(loaderOptions)

0 commit comments

Comments
 (0)