Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Half-Shot authored and AndrewFerr committed Nov 24, 2023
1 parent 06e66df commit cf05059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/MatrixClientTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2772,7 +2772,7 @@ describe('MatrixClient', () => {
http.when("GET", "/_matrix/client/v3/rooms").respond(200, (path, _content, req) => {
expect(path).toEqual(`${hsUrl}/_matrix/client/v1/rooms/${encodeURIComponent(roomId)}/timestamp_to_event`);
expect(req.queryParams['dir']).toEqual(dir);
expect(req.queryParams['ts']).toEqual(timestamp.toString());
expect(req.queryParams['ts']).toEqual(timestamp);

return {
event_id: eventId,
Expand Down

0 comments on commit cf05059

Please sign in to comment.