Skip to content

Commit 714c586

Browse files
fix: linter
1 parent e951515 commit 714c586

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/java/com/influxdb/v3/client/InfluxDBClientTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,8 @@ public void testQueryRows() throws Exception {
229229
}
230230

231231
Map<String, Object> parameters = Map.of("testId", uuid);
232-
String sql = String.format("Select * from %s where \"testId\"=$testId order by time", measurement); // Result set much be ordered by time
232+
// Result set much be ordered by time
233+
String sql = String.format("Select * from %s where \"testId\"=$testId order by time", measurement);
233234
try (Stream<Map<String, Object>> stream = client.queryRows(sql, parameters)) {
234235
List<Map<String, Object>> results = stream.collect(Collectors.toList());
235236
for (int i = 0; i <= 9; i++) {

0 commit comments

Comments
 (0)