Skip to content

Commit 88be06e

Browse files
committed
Fixed test class name
1 parent dac8c9e commit 88be06e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,11 @@
4242
import static org.junit.Assert.assertFalse;
4343
import static org.junit.Assert.assertTrue;
4444

45-
4645
/**
4746
* @author Arjen Poutsma
4847
* @author Rossen Stoyanchev
4948
*/
50-
public class Jaxb2RootElementHttpMessageConverterTest {
49+
public class Jaxb2RootElementHttpMessageConverterTests {
5150

5251
private Jaxb2RootElementHttpMessageConverter converter;
5352

@@ -183,6 +182,7 @@ public void writeXmlRootElementSubclass() throws Exception {
183182
outputMessage.getBodyAsString(Charset.forName("UTF-8")));
184183
}
185184

185+
186186
@XmlRootElement
187187
public static class RootElement {
188188

@@ -191,17 +191,17 @@ public static class RootElement {
191191

192192
@XmlElement(required=false)
193193
public String external;
194-
195194
}
196195

196+
197197
@XmlType
198198
public static class Type {
199199

200200
@XmlAttribute
201201
public String s = "Hello World";
202-
203202
}
204203

204+
205205
public static class RootElementSubclass extends RootElement {
206206
}
207207

0 commit comments

Comments
 (0)