Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix for Jenkins Issue [JENKINS-28869]
  • Loading branch information
Thomas Blitz committed Jun 15, 2015
1 parent 49c3828 commit 06846d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/jenkinsci/plugins/MsTestBuilder.java
Expand Up @@ -172,7 +172,7 @@ public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListen
}

// Add test containers to command line
String macroReplacedTestFiles = Util.replaceMacro(testFiles, env);//Required to handle newlines properly
String macroReplacedTestFiles = Util.replaceMacro(testFiles, env);// Required to handle newlines properly
StringTokenizer testFilesToknzr = new StringTokenizer(macroReplacedTestFiles, "\r\n");
while (testFilesToknzr.hasMoreTokens()) {
String testFile = testFilesToknzr.nextToken();
Expand Down

0 comments on commit 06846d4

Please sign in to comment.