Skip to content

Commit fd14220

Browse files
committed
Ignore test after after fixes in Jackson 2.12.0
FasterXML/jackson-databind#1852 shipped in 2.12.0 allows case-insensitive boolean deserialization
1 parent c5f8edc commit fd14220

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

fusion-endpoint/src/test/java/com/vaadin/fusion/typeconversion/BooleanConversionTest.java

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*/
1616
package com.vaadin.fusion.typeconversion;
1717

18+
import org.junit.Ignore;
1819
import org.junit.Test;
1920

2021
public class BooleanConversionTest extends BaseTypeConversionTest {
@@ -53,6 +54,7 @@ public void should_ConvertToBoolean_When_ReceiveTrueOrFalseAsString() {
5354
}
5455

5556
@Test
57+
@Ignore("Ignored after https://github.com/FasterXML/jackson-databind/issues/1852 in Jackson 2.12.0")
5658
public void should_FailToConvertToBoolean_When_ReceiveUppercaseString() {
5759
assert400ResponseWhenCallingMethod("revertBoolean", "\"TRUE\"");
5860
assert400ResponseWhenCallingMethod("revertBoolean", "\"TRue\"");

0 commit comments

Comments
 (0)