add = signs

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1333865 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-05-04 10:32:41 +00:00
parent f7fef4dac7
commit d920478751
1 changed files with 2 additions and 2 deletions

View File

@ -1560,7 +1560,7 @@ public abstract class LuceneTestCase extends Assert {
// We get here from InterceptTestCaseEvents on the 'failed' event....
public static void reportPartialFailureInfo() {
System.err.println("NOTE: reproduce with (hopefully): ant test " +
"-Dtestcase" + getTestClass().getSimpleName() +
"-Dtestcase=" + getTestClass().getSimpleName() +
" -Dtests.seed=" + RandomizedContext.current().getRunnerSeedAsString() +
reproduceWithExtraParams());
}
@ -1569,7 +1569,7 @@ public abstract class LuceneTestCase extends Assert {
public void reportAdditionalFailureInfo() {
StringBuilder b = new StringBuilder();
b.append("NOTE: reproduce with: ant test ")
.append("-Dtestcase").append(getTestClass().getSimpleName());
.append("-Dtestcase=").append(getTestClass().getSimpleName());
if (getName() != null) {
b.append(" -Dtests.method=").append(getName());
}