Skip to content

Commit ae53b03

Browse files
chore: linter
1 parent fe95068 commit ae53b03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/influxdb/v3/client/internal/FlightSqlClientTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ void queryPointWithNullField() throws Exception {
438438
Assertions.assertThatNoException().isThrownBy(() -> {
439439
Stream<PointValues> stream = influxDBClient.queryPoints(
440440
"Select normalField, nullField, nullField1 from \"nothing\"");
441-
stream.forEach(pointValues ->{
441+
stream.forEach(pointValues -> {
442442
Assertions.assertThat(pointValues.getField("normalField")).isEqualTo("Value");
443443
Assertions.assertThat(pointValues.getField("nullField")).isNull();
444444
Assertions.assertThat(pointValues.getField("nullField1")).isNull();

0 commit comments

Comments
 (0)