@@ -1358,7 +1358,7 @@ public Observable<?> call(Throwable throwable) {
1358
1358
1359
1359
@ Test
1360
1360
@ SuppressWarnings ("unchecked" )
1361
- public void testTakeUntilSuccess () {
1361
+ public void takeUntilSuccess () {
1362
1362
Subscription sSource = mock (Subscription .class );
1363
1363
Subscription sOther = mock (Subscription .class );
1364
1364
TestSingle source = new TestSingle (sSource );
@@ -1376,7 +1376,7 @@ public void testTakeUntilSuccess() {
1376
1376
1377
1377
@ Test
1378
1378
@ SuppressWarnings ("unchecked" )
1379
- public void testTakeUntilSourceSuccess () {
1379
+ public void takeUntilSourceSuccess () {
1380
1380
Subscription sSource = mock (Subscription .class );
1381
1381
Subscription sOther = mock (Subscription .class );
1382
1382
TestSingle source = new TestSingle (sSource );
@@ -1394,7 +1394,7 @@ public void testTakeUntilSourceSuccess() {
1394
1394
1395
1395
@ Test
1396
1396
@ SuppressWarnings ("unchecked" )
1397
- public void testTakeUntilNext () {
1397
+ public void takeUntilNext () {
1398
1398
Subscription sSource = mock (Subscription .class );
1399
1399
Subscription sOther = mock (Subscription .class );
1400
1400
TestSingle source = new TestSingle (sSource );
@@ -1412,7 +1412,7 @@ public void testTakeUntilNext() {
1412
1412
1413
1413
@ Test
1414
1414
@ SuppressWarnings ("unchecked" )
1415
- public void testTakeUntilSourceSuccessObservable () {
1415
+ public void takeUntilSourceSuccessObservable () {
1416
1416
Subscription sSource = mock (Subscription .class );
1417
1417
Subscription sOther = mock (Subscription .class );
1418
1418
TestSingle source = new TestSingle (sSource );
@@ -1430,7 +1430,7 @@ public void testTakeUntilSourceSuccessObservable() {
1430
1430
1431
1431
@ Test
1432
1432
@ SuppressWarnings ("unchecked" )
1433
- public void testTakeUntilSourceError () {
1433
+ public void takeUntilSourceError () {
1434
1434
Subscription sSource = mock (Subscription .class );
1435
1435
Subscription sOther = mock (Subscription .class );
1436
1436
TestSingle source = new TestSingle (sSource );
@@ -1449,7 +1449,7 @@ public void testTakeUntilSourceError() {
1449
1449
1450
1450
@ Test
1451
1451
@ SuppressWarnings ("unchecked" )
1452
- public void testTakeUntilSourceErrorObservable () {
1452
+ public void takeUntilSourceErrorObservable () {
1453
1453
Subscription sSource = mock (Subscription .class );
1454
1454
Subscription sOther = mock (Subscription .class );
1455
1455
TestSingle source = new TestSingle (sSource );
@@ -1468,7 +1468,7 @@ public void testTakeUntilSourceErrorObservable() {
1468
1468
1469
1469
@ Test
1470
1470
@ SuppressWarnings ("unchecked" )
1471
- public void testTakeUntilOtherError () {
1471
+ public void takeUntilOtherError () {
1472
1472
Subscription sSource = mock (Subscription .class );
1473
1473
Subscription sOther = mock (Subscription .class );
1474
1474
TestSingle source = new TestSingle (sSource );
@@ -1487,7 +1487,7 @@ public void testTakeUntilOtherError() {
1487
1487
1488
1488
@ Test
1489
1489
@ SuppressWarnings ("unchecked" )
1490
- public void testTakeUntilOtherErrorObservable () {
1490
+ public void takeUntilOtherErrorObservable () {
1491
1491
Subscription sSource = mock (Subscription .class );
1492
1492
Subscription sOther = mock (Subscription .class );
1493
1493
TestSingle source = new TestSingle (sSource );
@@ -1506,7 +1506,7 @@ public void testTakeUntilOtherErrorObservable() {
1506
1506
1507
1507
@ Test
1508
1508
@ SuppressWarnings ("unchecked" )
1509
- public void testTakeUntilOtherCompleted () {
1509
+ public void takeUntilOtherCompleted () {
1510
1510
Subscription sSource = mock (Subscription .class );
1511
1511
Subscription sOther = mock (Subscription .class );
1512
1512
TestSingle source = new TestSingle (sSource );
@@ -1671,7 +1671,7 @@ public void testDownstreamUnsubscribesObservable() {
1671
1671
}
1672
1672
1673
1673
@ Test
1674
- public void testTakeUntilSimple () {
1674
+ public void takeUntilSimple () {
1675
1675
PublishSubject <String > stringSubject = PublishSubject .create ();
1676
1676
Single <String > single = stringSubject .toSingle ();
1677
1677
@@ -1693,7 +1693,7 @@ public void call(Throwable throwable) {
1693
1693
}
1694
1694
1695
1695
@ Test
1696
- public void testTakeUntilObservable () {
1696
+ public void takeUntilObservable () {
1697
1697
PublishSubject <String > stringSubject = PublishSubject .create ();
1698
1698
Single <String > single = stringSubject .toSingle ();
1699
1699
PublishSubject <String > otherSubject = PublishSubject .create ();
0 commit comments