Skip to content

Commit

Permalink
Fix unit tests
Browse files Browse the repository at this point in the history
ReplaceUsingAccessToken was, uh, replaced with replacedUsingCreds
  • Loading branch information
dbkr committed Aug 5, 2016
1 parent a190862 commit c9ab977
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion test/app-tests/joining.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,13 @@ describe('joining a room', function () {
httpBackend.when('GET', '/directory/room/'+encodeURIComponent(ROOM_ALIAS)).respond(200, { room_id: ROOM_ID });

// start with a logged-in client
peg.replaceUsingAccessToken(HS_URL, IS_URL, USER_ID, ACCESS_TOKEN);
peg.replaceUsingCreds({
homeserverUrl: HS_URL,
identityServerUrl: IS_URL,
userId: USER_ID,
accessToken: ACCESS_TOKEN,
guest: false,
});

var mc = <MatrixChat config={{}}/>;
matrixChat = ReactDOM.render(mc, parentDiv);
Expand Down

0 comments on commit c9ab977

Please sign in to comment.