mirror of
https://github.com/apache/lucene.git
synced 2025-02-15 22:45:52 +00:00
Fix arg order in CommonParamsTest's assertEquals.
This commit is contained in:
parent
3046f86ce7
commit
3e37f4294a
@ -26,9 +26,9 @@ import org.apache.lucene.util.LuceneTestCase;
|
||||
*/
|
||||
public class CommonParamsTest extends LuceneTestCase
|
||||
{
|
||||
public void testStart() { assertEquals(CommonParams.START, "start"); }
|
||||
public void testStartDefault() { assertEquals(CommonParams.START_DEFAULT, 0); }
|
||||
public void testStart() { assertEquals("start", CommonParams.START); }
|
||||
public void testStartDefault() { assertEquals(0, CommonParams.START_DEFAULT); }
|
||||
|
||||
public void testRows() { assertEquals(CommonParams.ROWS, "rows"); }
|
||||
public void testRowsDefault() { assertEquals(CommonParams.ROWS_DEFAULT, 10); }
|
||||
public void testRows() { assertEquals("rows", CommonParams.ROWS); }
|
||||
public void testRowsDefault() { assertEquals(10, CommonParams.ROWS_DEFAULT); }
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user