Swapped arguments (expected vs tested).

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1520623 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2013-09-06 16:16:43 +00:00
parent 034ed33e47
commit 6429fc8d89
1 changed files with 1 additions and 1 deletions

View File

@ -994,6 +994,6 @@ public class MathArraysTest {
@Test
public void testNaturalZero() {
final int[] natural = MathArrays.natural(0);
Assert.assertEquals(natural.length, 0);
Assert.assertEquals(0, natural.length);
}
}