Github user revans2 commented on a diff in the pull request:
https://github.com/apache/storm/pull/2502#discussion_r159969789
--- Diff: storm-server/src/main/java/org/apache/storm/Testing.java ---
@@ -712,6 +712,6 @@ public static Tuple testTuple(List<Object> values,
MkTupleParam param) {
new HashMap<>(),
new HashMap<>(),
new AtomicBoolean(false));
- return new TupleImpl(context, values, 1, stream);
+ return new TupleImpl(context, values, "component", 1, stream);
--- End diff --
This I think is the cause of some of the test failures....
---