Skip to content

Commit d0ed90b

Browse files
committed
Fix test
1 parent bf863ca commit d0ed90b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

components/sbm-recipes-jee-to-boot/src/test/java/org/springframework/sbm/jee/jaxrs/recipes/ResponseStatusFamilyTest.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ void enumConstantsTest() {
6464
+ "public class TestController {\n"
6565
+ "\n"
6666
+ " public void test() {\n"
67-
+ " HttpStatus.Series f1 = HttpStatus.Series.INFORMATIONAL;\n"
68-
+ " HttpStatus.Series f2 = HttpStatus.Series.SUCCESSFUL;\n"
69-
+ " HttpStatus.Series f3 = HttpStatus.Series.REDIRECTION;\n"
70-
+ " HttpStatus.Series f4 = HttpStatus.Series.CLIENT_ERROR;\n"
71-
+ " HttpStatus.Series f5 = HttpStatus.Series.SERVER_ERROR;\n"
67+
+ " HttpStatus.Series f1 = Series.INFORMATIONAL;\n"
68+
+ " HttpStatus.Series f2 = Series.SUCCESSFUL;\n"
69+
+ " HttpStatus.Series f3 = Series.REDIRECTION;\n"
70+
+ " HttpStatus.Series f4 = Series.CLIENT_ERROR;\n"
71+
+ " HttpStatus.Series f5 = Series.SERVER_ERROR;\n"
7272
+ " \n"
7373
+ " int code = 201;\n"
7474
+ " HttpStatus.Series custom = HttpStatus.Series.resolve(code);\n"

0 commit comments

Comments
 (0)