Reduce test warning about newlines to info

git-svn-id: https://zxing.googlecode.com/svn/trunk@2914 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen@gmail.com 2013-11-21 12:34:36 +00:00
parent 8e909ddb51
commit cc8254bfc3

View file

@ -310,7 +310,7 @@ public abstract class AbstractBlackBoxTestCase extends Assert {
}
String stringContents = result.toString();
if (stringContents.endsWith("\n")) {
log.warning("String contents of file " + file + " end with a newline. " +
log.info("String contents of file " + file + " end with a newline. " +
"This may not be intended and cause a test failure");
}
return stringContents;