Skip to content

Commit

Permalink
Ignore test after after fixes in Jackson 2.12.0
Browse files Browse the repository at this point in the history
FasterXML/jackson-databind#1852 shipped in 2.12.0 allows case-insensitive boolean deserialization
  • Loading branch information
vercel-talented committed Sep 8, 2021
1 parent 533d0f7 commit 436cd3e
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/
package com.vaadin.fusion.typeconversion;

import org.junit.Ignore;
import org.junit.Test;

public class BooleanConversionTest extends BaseTypeConversionTest {
Expand Down Expand Up @@ -53,6 +54,7 @@ public void should_ConvertToBoolean_When_ReceiveTrueOrFalseAsString() {
}

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

0 comments on commit 436cd3e

Please sign in to comment.