Skip to content

Commit

Permalink
bugfix param name changed
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal Zukowski committed Nov 26, 2015
1 parent 36c8126 commit 21cadf7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/API/Request/AddAttendees.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function getMethod()
public function getParams()
{
return [
'classroom_id' => $this->classroomId,
'class_id' => $this->classroomId,
'attendee_list' => $this->attendees->toXmlString()
];
}
Expand Down
2 changes: 1 addition & 1 deletion tests/API/Request/AddAttendeesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function testGetParams()
->will($this->returnValue('xml'));

$params = [
'classroom_id' => 12345,
'class_id' => 12345,
'attendee_list' => 'xml',
];

Expand Down

0 comments on commit 21cadf7

Please sign in to comment.