Skip to content

Commit 0e612cf

Browse files
committed
fix(test): reflect changes in InfluxDB 2.2
1 parent c8a5e8e commit 0e612cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/src/test/java/com/influxdb/client/ITQueryService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ void suggestions() throws IOException {
150150
.hasSize(4)
151151
.hasEntrySatisfying("columnKey", value -> Assertions.assertThat(value).isEqualTo("array"))
152152
.hasEntrySatisfying("rowKey", value -> Assertions.assertThat(value).isEqualTo("array"))
153-
.hasEntrySatisfying("tables", value -> Assertions.assertThat(value).isEqualTo("array"))
153+
.hasEntrySatisfying("tables", value -> Assertions.assertThat(value).isEqualTo("stream"))
154154
.hasEntrySatisfying("valueColumn", value -> Assertions.assertThat(value).isEqualTo("string"));
155155

156156
FluxSuggestion suggestion = queryService.getQuerySuggestionsName("range", null).execute().body();
@@ -159,7 +159,7 @@ void suggestions() throws IOException {
159159
.hasSize(3)
160160
.hasEntrySatisfying("start", value -> Assertions.assertThat(value).isEqualTo("invalid"))
161161
.hasEntrySatisfying("stop", value -> Assertions.assertThat(value).isEqualTo("invalid"))
162-
.hasEntrySatisfying("tables", value -> Assertions.assertThat(value).isEqualTo("array"));
162+
.hasEntrySatisfying("tables", value -> Assertions.assertThat(value).isEqualTo("stream"));
163163

164164
}
165165
}

0 commit comments

Comments
 (0)