mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
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:
parent
8e909ddb51
commit
cc8254bfc3
|
@ -310,7 +310,7 @@ public abstract class AbstractBlackBoxTestCase extends Assert {
|
||||||
}
|
}
|
||||||
String stringContents = result.toString();
|
String stringContents = result.toString();
|
||||||
if (stringContents.endsWith("\n")) {
|
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");
|
"This may not be intended and cause a test failure");
|
||||||
}
|
}
|
||||||
return stringContents;
|
return stringContents;
|
||||||
|
|
Loading…
Reference in a new issue