Skip to content

Commit 34495a2

Browse files
fix: linter
1 parent 008d030 commit 34495a2

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
@@ -244,7 +244,8 @@ public void testQueryRows() throws Exception {
244244
}
245245

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

0 commit comments

Comments
 (0)