@@ -32,7 +32,7 @@ public function shouldGetOpenPullRequests()
3232 $ api = $ this ->getApiMock ();
3333 $ api ->expects ($ this ->once ())
3434 ->method ('get ' )
35- ->with ('/repos/ezsystems/ezpublish/pulls ' , ['state ' => 'open ' , ' per_page ' => 30 , ' page ' => 1 ])
35+ ->with ('/repos/ezsystems/ezpublish/pulls ' , ['state ' => 'open ' ])
3636 ->will ($ this ->returnValue ($ expectedArray ));
3737
3838 $ this ->assertEquals ($ expectedArray , $ api ->all ('ezsystems ' , 'ezpublish ' , ['state ' => 'open ' ]));
@@ -48,7 +48,7 @@ public function shouldGetClosedPullRequests()
4848 $ api = $ this ->getApiMock ();
4949 $ api ->expects ($ this ->once ())
5050 ->method ('get ' )
51- ->with ('/repos/ezsystems/ezpublish/pulls ' , ['state ' => 'closed ' , ' per_page ' => 30 , ' page ' => 1 ])
51+ ->with ('/repos/ezsystems/ezpublish/pulls ' , ['state ' => 'closed ' ])
5252 ->will ($ this ->returnValue ($ expectedArray ));
5353
5454 $ this ->assertEquals ($ expectedArray , $ api ->all ('ezsystems ' , 'ezpublish ' , ['state ' => 'closed ' ]));
@@ -97,7 +97,7 @@ public function shouldShowFilesFromPullRequest()
9797 $ api = $ this ->getApiMock ();
9898 $ api ->expects ($ this ->once ())
9999 ->method ('get ' )
100- ->with ('/repos/ezsystems/ezpublish/pulls/15/files ' , [ ' page ' => 1 , ' per_page ' => 30 ] )
100+ ->with ('/repos/ezsystems/ezpublish/pulls/15/files ' )
101101 ->will ($ this ->returnValue ($ expectedArray ));
102102
103103 $ this ->assertEquals ($ expectedArray , $ api ->files ('ezsystems ' , 'ezpublish ' , '15 ' ));
0 commit comments