Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Half-Shot committed Nov 23, 2023
1 parent 557b39c commit 65b1816
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 @@ -2770,7 +2770,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 65b1816

Please sign in to comment.