Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Abhinav Kumar <abhinav@avitechlab.com>
  • Loading branch information
abhinavkrin committed Jun 28, 2024
1 parent 01b1a69 commit fdad230
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/meteor/tests/end-to-end/api/09-rooms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2997,7 +2997,7 @@ describe('[Rooms]', () => {
.set(testUser1Credentials)
.query({
roomId: testChannel._id,
userId: testUser2.username,
username: testUser2.username,
})
.expect(200)
.expect((res) => {
Expand Down Expand Up @@ -3042,7 +3042,7 @@ describe('[Rooms]', () => {
.set(testUser1Credentials)
.query({
roomId: testGroup._id,
userId: testUser2.username,
username: testUser2.username,
})
.expect(200)
.expect((res) => {
Expand Down Expand Up @@ -3102,7 +3102,7 @@ describe('[Rooms]', () => {
.set(testUser1Credentials)
.query({
roomId: testDM._id,
userId: testUser2.username,
username: testUser2.username,
})
.expect(200)
.expect((res) => {
Expand Down

0 comments on commit fdad230

Please sign in to comment.