We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3caa96d commit 97df07fCopy full SHA for 97df07f
src/test/java/org/influxdb/impl/BatchProcessorTest.java
@@ -203,7 +203,7 @@ public void precision() throws Exception {
203
204
ArgumentCaptor<Collection<BatchPoints>> argument = ArgumentCaptor.forClass(Collection.class);
205
206
- verify(batchWriter, times(2)).write(argument.capture());
+ verify(batchWriter, atLeastOnce()).write(argument.capture());
207
208
for (Collection<BatchPoints> list : argument.getAllValues()) {
209
for (BatchPoints p : list) {
0 commit comments