You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ManualSubscriber<T> sub = env.newManualSubscriber(pub);
214
-
215
-
sub.expectNone(String.format("Publisher %s produced value before the first `request`: ", pub));
216
-
sub.request(1);
217
-
sub.nextElement(String.format("Publisher %s produced no element after first `request`", pub));
218
-
sub.expectNone(String.format("Publisher %s produced unrequested: ", pub));
219
-
220
-
sub.request(1);
221
-
sub.request(2);
222
-
sub.nextElements(3, env.defaultTimeoutMillis(), String.format("Publisher %s produced less than 3 elements after two respective `request` calls", pub));
sub.expectNone(String.format("Publisher %s produced value before the first `request`: ", pub));
216
+
sub.request(1);
217
+
sub.nextElement(String.format("Publisher %s produced no element after first `request`", pub));
218
+
sub.expectNone(String.format("Publisher %s produced unrequested: ", pub));
219
+
220
+
sub.request(1);
221
+
sub.request(2);
222
+
sub.nextElements(3, env.defaultTimeoutMillis(), String.format("Publisher %s produced less than 3 elements after two respective `request` calls", pub));
0 commit comments