@@ -40,7 +40,7 @@ public function testResolvedWillNotStartTimer()
40
40
41
41
public function testRejectedWillRejectRightAway ()
42
42
{
43
- $ promise = Promise \reject ();
43
+ $ promise = Promise \reject (new \ Exception ( ' reject ' ) );
44
44
45
45
$ promise = Timer \timeout ($ promise , 3 , $ this ->loop );
46
46
@@ -49,7 +49,7 @@ public function testRejectedWillRejectRightAway()
49
49
50
50
public function testRejectedWillNotStartTimer ()
51
51
{
52
- $ promise = Promise \reject ();
52
+ $ promise = Promise \reject (new \ Exception ( ' reject ' ) );
53
53
54
54
Timer \timeout ($ promise , 3 , $ this ->loop );
55
55
@@ -73,10 +73,12 @@ public function testPendingWillRejectOnTimeout()
73
73
74
74
public function testPendingCancellableWillBeCancelledThroughFollowerOnTimeout ()
75
75
{
76
- $ cancellable = $ this ->getMockBuilder ('React\Promise\CancellablePromiseInterface ' )->getMock ();
76
+ $ cancellableInterface = interface_exists ('React\Promise\CancellablePromiseInterface ' ) ?
77
+ 'React\Promise\CancellablePromiseInterface ' : 'React\Promise\PromiseInterface ' ;
78
+ $ cancellable = $ this ->getMockBuilder ($ cancellableInterface )->getMock ();
77
79
$ cancellable ->expects ($ this ->once ())->method ('cancel ' );
78
80
79
- $ promise = $ this ->getMockBuilder (' React\Promise\CancellablePromiseInterface ' )->getMock ();
81
+ $ promise = $ this ->getMockBuilder ($ cancellableInterface )->getMock ();
80
82
$ promise ->expects ($ this ->once ())->method ('then ' )->willReturn ($ cancellable );
81
83
82
84
Timer \timeout ($ promise , 0.01 , $ this ->loop );
0 commit comments