提交 e00852ee authored 作者: noelgrandin@gmail.com's avatar noelgrandin@gmail.com

fix accidental concatenation

found by CodePro
上级 9ba97664
......@@ -195,7 +195,7 @@ public class TestConnectionPool extends TestBase {
if (man.getActiveConnections() >= len + 1) {
throw new Exception("a: " +
man.getActiveConnections() +
" is not smaller than b: " + len + 1);
" is not smaller than b: " + (len + 1));
}
Statement stat = conn.createStatement();
stat.execute("SELECT 1 FROM DUAL");
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论