File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
dropwizard-jersey/src/test/java/io/dropwizard/jersey Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -86,12 +86,12 @@ public void logsEndpointsSorted() {
86
86
rc .register (ImplementingResource .class );
87
87
88
88
assertThat (rc .getEndpointsInfo ()).matches (Pattern .compile (".*"
89
- + " GET / \\ (io\\ .dropwizard\\ .jersey\\ .dummy\\ .DummyResource\\ )."
90
- + " GET /another \\ (io\\ .dropwizard\\ .jersey\\ .DropwizardResourceConfigTest\\ .ImplementingResource\\ )."
91
- + " GET /async \\ (io\\ .dropwizard\\ .jersey\\ .dummy\\ .DummyResource\\ )."
92
- + " DELETE /dummy \\ (io\\ .dropwizard\\ .jersey\\ .DropwizardResourceConfigTest\\ .TestResource2\\ )."
93
- + " GET /dummy \\ (io\\ .dropwizard\\ .jersey\\ .DropwizardResourceConfigTest\\ .TestResource\\ )."
94
- + " POST /dummy \\ (io\\ .dropwizard\\ .jersey\\ .DropwizardResourceConfigTest\\ .TestResource2\\ )." ,
89
+ + " GET / \\ (io\\ .dropwizard\\ .jersey\\ .dummy\\ .DummyResource\\ )" + System . lineSeparator ()
90
+ + " GET /another \\ (io\\ .dropwizard\\ .jersey\\ .DropwizardResourceConfigTest\\ .ImplementingResource\\ )" + System . lineSeparator ()
91
+ + " GET /async \\ (io\\ .dropwizard\\ .jersey\\ .dummy\\ .DummyResource\\ )" + System . lineSeparator ()
92
+ + " DELETE /dummy \\ (io\\ .dropwizard\\ .jersey\\ .DropwizardResourceConfigTest\\ .TestResource2\\ )" + System . lineSeparator ()
93
+ + " GET /dummy \\ (io\\ .dropwizard\\ .jersey\\ .DropwizardResourceConfigTest\\ .TestResource\\ )" + System . lineSeparator ()
94
+ + " POST /dummy \\ (io\\ .dropwizard\\ .jersey\\ .DropwizardResourceConfigTest\\ .TestResource2\\ )" + System . lineSeparator () ,
95
95
Pattern .DOTALL ));
96
96
}
97
97
You can’t perform that action at this time.
0 commit comments