File tree Expand file tree Collapse file tree
processing/src/test/java/org/apache/druid/segment Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -77,10 +77,10 @@ public void testSerdeWithStringColumnFormatSpec() throws Exception
7777 final String json = "{ \" stringColumnFormatSpec\" : { \" maxStringLength\" : 50 } }" ;
7878
7979 final IndexSpec spec = objectMapper .readValue (json , IndexSpec .class );
80- Assert .assertNotNull (spec .getStringColumnFormatSpec ());
81- Assert .assertEquals (Integer .valueOf (50 ), spec .getStringColumnFormatSpec ().getMaxStringLength ());
80+ Assertions .assertNotNull (spec .getStringColumnFormatSpec ());
81+ Assertions .assertEquals (Integer .valueOf (50 ), spec .getStringColumnFormatSpec ().getMaxStringLength ());
8282
83- Assert .assertEquals (spec , objectMapper .readValue (objectMapper .writeValueAsBytes (spec ), IndexSpec .class ));
83+ Assertions .assertEquals (spec , objectMapper .readValue (objectMapper .writeValueAsBytes (spec ), IndexSpec .class ));
8484 }
8585
8686 @ Test
You can’t perform that action at this time.
0 commit comments