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