LUCENE-6160: add whitespace to temp test folder names

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1649547 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2015-01-05 15:31:35 +00:00
parent ddb6b38b88
commit 5a86451cba
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ final class TestRuleTemporaryFilesCleanup extends TestRuleAdapter {
"Failed to get a temporary name too many times, check your temp directory and consider manually cleaning it: "
+ javaTempDir.toAbsolutePath());
}
f = javaTempDir.resolve(prefix + "-" + ctx.getRunnerSeedAsString()
f = javaTempDir.resolve(prefix + " " + ctx.getRunnerSeedAsString()
+ "-" + String.format(Locale.ENGLISH, "%03d", attempt));
try {
Files.createDirectory(f);