Skip to content

Commit

Permalink
Test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
colemanw committed Mar 15, 2016
1 parent f06de23 commit 5062bbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/phpunit/api/v3/MembershipTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ public function testMembershipGetWithReturn() {
$this->contactMembershipCreate($this->_params);
$result = $this->callAPISuccess('membership', 'get', array('return' => 'end_date'));
foreach ($result['values'] as $membership) {
$this->assertEquals(array('end_date', 'id'), array_keys($membership));
$this->assertEquals(array('id', 'end_date'), array_keys($membership));
}
}
///////////////// civicrm_membership_create methods
Expand Down

0 comments on commit 5062bbd

Please sign in to comment.