Skip to content
This repository has been archived by the owner on May 19, 2020. It is now read-only.

Commit

Permalink
Forgot to change call to changed name
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Segreto committed Jun 8, 2017
1 parent 028f8e0 commit 4bd00f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion static_src/test/unit/util/cf_api.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -891,7 +891,7 @@ describe('cfApi', function() {
expect(actual).toMatch(new RegExp('spaces'));
expect(actual).toMatch(new RegExp('user_roles'));
actual = spy.getCall(0).args[1];
expect(actual).toEqual(userActions.receivedSpaceUsers);
expect(actual).toEqual(userActions.receivedSpaceUserRoles);
actual = spy.getCall(0).args[2];
expect(actual).toEqual(expected);
});
Expand Down
2 changes: 1 addition & 1 deletion static_src/util/cf_api.js
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ export default {
*/
fetchSpaceUserRoles(spaceGuid) {
return this.fetchMany(`/spaces/${spaceGuid}/user_roles`,
userActions.receivedSpaceUsers,
userActions.receivedSpaceUserRoles,
spaceGuid);
},

Expand Down

0 comments on commit 4bd00f5

Please sign in to comment.