We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30858c5 commit c582607Copy full SHA for c582607
test/Github/Tests/Api/Organization/TeamsTest.php
@@ -69,10 +69,10 @@ public function shouldShowOrganizationTeam()
69
$api = $this->getApiMock();
70
$api->expects($this->once())
71
->method('get')
72
- ->with('orgs/KnpLabs/teams/KnpWorld')
+ ->with('teams/KnpWorld')
73
->will($this->returnValue($expectedValue));
74
75
- $this->assertEquals($expectedValue, $api->show('KnpLabs', 'KnpWorld'));
+ $this->assertEquals($expectedValue, $api->show('KnpWorld'));
76
}
77
78
/**
0 commit comments