We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0edddee commit 9ef6f9aCopy full SHA for 9ef6f9a
test/Ported/Attachments/AttachmentsSessionTest.ts
@@ -62,7 +62,7 @@ describe("Attachments Session", function () {
62
assert.strictEqual(attachments.length, 3);
63
64
const orderedNames = [...attachments];
65
- orderedNames.sort((a, b) => a.name > b.name ? -1 : -1);
+ orderedNames.sort((a, b) => a.name > b.name ? 1 : -1);
66
67
for (let i = 0; i < attachmentsInfo.length; i++) {
68
const { name, contentType } = orderedNames[i];
0 commit comments