Minor - remove debug println from test

This commit is contained in:
ljacqu 2015-12-27 23:40:32 +01:00
parent 804a670e08
commit 1cabc47ff9

View File

@ -41,7 +41,6 @@ public class RandomStringTest {
result.length(), equalTo(length)); result.length(), equalTo(length));
assertThat("Result '" + result + "' should only have characters a-z, 0-9", assertThat("Result '" + result + "' should only have characters a-z, 0-9",
badChars.matcher(result).matches(), equalTo(false)); badChars.matcher(result).matches(), equalTo(false));
System.out.println(result);
} }
} }