ygerzhedovich commented on code in PR #1232:
URL: https://github.com/apache/ignite-3/pull/1232#discussion_r1005791248
##########
modules/runner/src/integrationTest/java/org/apache/ignite/internal/runner/app/jdbc/ItJdbcStatementSelfTest.java:
##########
@@ -119,7 +119,7 @@ public void testExecuteQuery1() throws Exception {
int val = rs.getInt(1);
- assertTrue(val >= 1 && val <= 10, "Invalid val: " + val);
+ assertEquals(5, val, "Invalid val: " + val);
Review Comment:
adding `val` to message is redundant
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]