Skip to content

Commit e8156d5

Browse files
committed
Remove whitespaces.
1 parent 09695b4 commit e8156d5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/test/java/io/reactivex/internal/operators/flowable/FlowableGroupByTest.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1948,16 +1948,16 @@ public void run() throws Exception {
19481948
}
19491949
};
19501950
}
1951-
1951+
19521952
private static final class TestTicker extends Ticker {
1953-
long tick = 0;
1953+
long tick;
19541954

19551955
@Override
19561956
public long read() {
19571957
return tick;
19581958
}
19591959
}
1960-
1960+
19611961
@Test
19621962
public void testGroupByEvictionCancellationOfSource5933() {
19631963
PublishProcessor<Integer> source = PublishProcessor.create();
@@ -2022,11 +2022,11 @@ public void run() throws Exception {
20222022
source.onNext(1);
20232023
source.onNext(1);
20242024
ts.awaitCount(3);
2025-
2025+
20262026
// Advance time far enough to evict the group.
20272027
// NOTE -- Comment this line out to make the test "pass".
20282028
testTicker.tick = TimeUnit.SECONDS.toNanos(6);
2029-
2029+
20302030
// Send more data in the group (triggering eviction and recreation)
20312031
source.onNext(1);
20322032

@@ -2042,12 +2042,12 @@ public void run() throws Exception {
20422042
assertTrue(list.contains("Source canceled"));
20432043
assertEquals(Arrays.asList(
20442044
"Group completed", // this is here when eviction occurs
2045-
"Outer group by canceled",
2045+
"Outer group by canceled",
20462046
"Group canceled",
20472047
"Source canceled" // This is *not* here when eviction occurs
20482048
), list);
20492049
}
2050-
2050+
20512051
@Test
20522052
public void testCancellationOfUpstreamWhenGroupedFlowableCompletes() {
20532053
final AtomicBoolean cancelled = new AtomicBoolean();

0 commit comments

Comments
 (0)