Skip to content
Snippets Groups Projects
Commit 04786d07 authored by Patrick Wendell's avatar Patrick Wendell
Browse files

small fix

parent c65988bd
No related branches found
No related tags found
No related merge requests found
......@@ -810,12 +810,12 @@ public class JavaAPISuite implements Serializable {
if (state.isPresent()) {
out = out + state.get();
}
for (Integer v : values) {
for (Integer v: values) {
out = out + v;
}
return Optional.of(out);
}
});
});
JavaTestUtils.attachTestOutputStream(updated);
List<List<Tuple2<String, Integer>>> result = JavaTestUtils.runStreams(ssc, 3, 3);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment