Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
MTRNord committed Oct 24, 2023
1 parent b5c8e98 commit 7563a44
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/integration/commands/queryAdminDetailsTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe("Test: The queryAdmin command", function () {
await getMessagesByUserIn(moderator, draupnirUserId, this.mjolnir.managementRoomId, 1000, function (events) {
events.map(e => {
if (e.type === 'm.room.message') {
assert.equal(e.content.body, "", `Draipnir did not parse the json as expected: ${e.content.body}.`)
assert.equal(e.content.body, "", `Draupnir did not parse the json as expected: ${e.content.body}.`)
}
})
});
Expand All @@ -41,7 +41,7 @@ describe("Test: The queryAdmin command", function () {
await getMessagesByUserIn(moderator, draupnirUserId, this.mjolnir.managementRoomId, 1000, function (events) {
events.map(e => {
if (e.type === 'm.room.message') {
assert.equal(e.content.body, "", `Draipnir did not parse the json as expected: ${e.content.body}.`)
assert.equal(e.content.body, "", `Draupnir did not parse the json as expected: ${e.content.body}.`)
}
})
});
Expand All @@ -61,7 +61,7 @@ describe("Test: The queryAdmin command", function () {
await getMessagesByUserIn(moderator, draupnirUserId, this.mjolnir.managementRoomId, 1000, function (events) {
events.map(e => {
if (e.type === 'm.room.message') {
assert.equal(e.content.body, "", `Draipnir did not parse the json as expected: ${e.content.body}.`)
assert.equal(e.content.body, "", `Draupnir did not parse the json as expected: ${e.content.body}.`)
}
})
});
Expand All @@ -81,7 +81,7 @@ describe("Test: The queryAdmin command", function () {
await getMessagesByUserIn(moderator, draupnirUserId, this.mjolnir.managementRoomId, 1000, function (events) {
events.map(e => {
if (e.type === 'm.room.message') {
assert.equal(e.content.body, "", `Draipnir did not parse the json as expected: ${e.content.body}.`)
assert.equal(e.content.body, "", `Draupnir did not parse the json as expected: ${e.content.body}.`)
}
})
});
Expand Down

0 comments on commit 7563a44

Please sign in to comment.