Skip to content

Commit

Permalink
Merge pull request #745 from rhadman/JENKINS-16942
Browse files Browse the repository at this point in the history
[FIXED JENKINS-16942] SecretRewriterTest failure on Windows 7
  • Loading branch information
jglick committed Apr 3, 2013
2 parents 353ebe6 + 00b28d4 commit e0a445c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/test/java/hudson/util/SecretRewriterTest.groovy
Expand Up @@ -52,7 +52,7 @@ class SecretRewriterTest {
def f = File.createTempFile("test", "xml", tmp.root)
f.text = before
sr.rewrite(f,null)
assert after.trim()==f.text.trim()
assert after.replaceAll(System.getProperty("line.separator"), "\n").trim()==f.text.replaceAll(System.getProperty("line.separator"), "\n").trim()
}

String encryptOld(str) {
Expand Down

0 comments on commit e0a445c

Please sign in to comment.