Skip to content

Commit c62bd5b

Browse files
committed
style: formatting fix in MultiGroupTest.java
1 parent 0def1af commit c62bd5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

implementation/src/test/java/io/smallrye/mutiny/operators/MultiGroupTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1049,7 +1049,7 @@ void testUpstreamRequestsNotBlownOutOfProportion() {
10491049
AtomicLong itemCounter = new AtomicLong(0);
10501050
AtomicReference<MultiEmitter<? super Integer>> e = new AtomicReference<>();
10511051

1052-
Multi.createFrom().<Integer>emitter(e::set)
1052+
Multi.createFrom().<Integer> emitter(e::set)
10531053
.onRequest().invoke(requestCounter::addAndGet)
10541054
.group().by(i -> i / 10)
10551055
.onItem().transformToMulti(g -> g.map(i -> g.key() + " : " + i)

0 commit comments

Comments
 (0)