Skip to content

Commit 1dde544

Browse files
authored
Update AbstractApiTest.php
trigger rebuild
1 parent 637fce5 commit 1dde544

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Github/Tests/Api/AbstractApiTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function shouldPassGETRequestToClient()
3232
$method = new \ReflectionMethod($api, 'get');
3333
$method->setAccessible(true);
3434

35-
$this->assertEquals($expectedArray, $method->invokeArgs($api, ['/path', array('param1' => 'param1value'), array('header1' => 'header1value')]));
35+
$this->assertEquals($expectedArray, $method->invokeArgs($api, ['/path', ['param1' => 'param1value'], ['header1' => 'header1value']]));
3636
}
3737

3838
/**

0 commit comments

Comments
 (0)