TransformedWaveletDelta delta2 = UTIL.noOpDelta(V2.getVersion());
OpenListener listener = mock(OpenListener.class);
m.subscribe(W1, IdFilters.ALL_IDS, "ch1", listener);
DeltaSequence bothDeltas = DeltaSequence.of(DELTA, delta2);
m.onUpdate(W1A, bothDeltas);
verify(listener).onUpdate(W1A, null, bothDeltas, null, null, "ch1");
// Also succeeds when sending the two deltas via separate onUpdates()
DeltaSequence delta2Sequence = DeltaSequence.of(delta2);
m.subscribe(W2, IdFilters.ALL_IDS, "ch2", listener);
m.onUpdate(W2A, DELTAS);
m.onUpdate(W2A, DeltaSequence.of(delta2));
verify(listener).onUpdate(W2A, null, DELTAS, null, null, "ch2");
verify(listener).onUpdate(W2A, null, delta2Sequence, null, null, "ch2");