@@ -361,7 +361,7 @@ public void testIncludeSourceLocationDefault() throws Exception {
361361 assertTrue (e .getCause () instanceof JsonProcessingException );
362362 JsonProcessingException cause = (JsonProcessingException ) e .getCause ();
363363 assertEquals (2 , cause .getLocation ().getLineNr ());
364- assertEquals (3 , cause .getLocation ().getColumnNr ());
364+ assertEquals (2 , cause .getLocation ().getColumnNr ());
365365 assertNotEquals (ContentReference .unknown (), cause .getLocation ().contentReference ());
366366 assertEquals (source , cause .getLocation ().contentReference ().getRawContent ());
367367 }
@@ -379,7 +379,7 @@ public void testIncludeSourceLocationEnabled() throws Exception {
379379 assertTrue (e .getCause () instanceof JsonProcessingException );
380380 JsonProcessingException cause = (JsonProcessingException ) e .getCause ();
381381 assertEquals (2 , cause .getLocation ().getLineNr ());
382- assertEquals (3 , cause .getLocation ().getColumnNr ());
382+ assertEquals (2 , cause .getLocation ().getColumnNr ());
383383 assertNotEquals (ContentReference .unknown (), cause .getLocation ().contentReference ());
384384 assertEquals (source , cause .getLocation ().contentReference ().getRawContent ());
385385 }
@@ -396,7 +396,7 @@ public void testIncludeSourceLocationDisabled() throws Exception {
396396 assertTrue (e .getCause () instanceof JsonProcessingException );
397397 JsonProcessingException cause = (JsonProcessingException ) e .getCause ();
398398 assertEquals (2 , cause .getLocation ().getLineNr ());
399- assertEquals (3 , cause .getLocation ().getColumnNr ());
399+ assertEquals (2 , cause .getLocation ().getColumnNr ());
400400 assertEquals (ContentReference .unknown (), cause .getLocation ().contentReference ());
401401 }
402402 }
0 commit comments