JUnit: expected, actual

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150986 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2004-05-31 13:58:49 +00:00
parent c44c040207
commit 04c866d63a
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ public class TestSnowball extends TestCase {
for (int i=0; i<output.length; i++) {
Token t = ts.next();
assertNotNull(t);
assertEquals(t.termText(), output[i]);
assertEquals(output[i], t.termText());
}
assertNull(ts.next());
ts.close();