mirror of
https://github.com/apache/struts.git
synced 2026-08-07 07:37:20 +00:00
WW-4889 Uses proper order of params in assertEquals
This commit is contained in:
+2
-2
@@ -82,8 +82,8 @@ public class JuneauXmlHandlerTest extends XWorkTestCase {
|
||||
|
||||
// then
|
||||
assertNotNull(obj);
|
||||
assertEquals(obj.getName(), "Jan");
|
||||
assertEquals(obj.getAge().longValue(), 12L);
|
||||
assertEquals("Jan", obj.getName());
|
||||
assertEquals(12L, obj.getAge().longValue());
|
||||
assertNotNull(obj.getParents());
|
||||
assertThat(obj.getParents())
|
||||
.hasSize(2)
|
||||
|
||||
Reference in New Issue
Block a user