mirror of https://github.com/apache/lucene.git
fix equals bug in test
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene4547@1439157 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7c962031d5
commit
20159c0dcd
|
@ -362,7 +362,7 @@ public class TestIndexWriterWithThreads extends LuceneTestCase {
|
||||||
"finishDocument".equals(trace[i].getMethodName())) {
|
"finishDocument".equals(trace[i].getMethodName())) {
|
||||||
sawAbortOrFlushDoc = true;
|
sawAbortOrFlushDoc = true;
|
||||||
}
|
}
|
||||||
if ("merge".equals(trace[i])) {
|
if ("merge".equals(trace[i].getMethodName())) {
|
||||||
sawMerge = true;
|
sawMerge = true;
|
||||||
}
|
}
|
||||||
if ("close".equals(trace[i].getMethodName())) {
|
if ("close".equals(trace[i].getMethodName())) {
|
||||||
|
|
Loading…
Reference in New Issue