Remove partial comment from to-equal-array-unsorted.ts

This commit is contained in:
NightKev 2025-08-02 15:05:27 -07:00
parent fb7f010251
commit 81fb36978c

View File

@ -28,7 +28,6 @@ export function toEqualArrayUnsorted(
};
}
// Create shallow copies of the arrays in case we have
const actualSorted = received.slice().sort();
const expectedSorted = expected.slice().sort();
const pass = this.equals(actualSorted, expectedSorted, [...this.customTesters, this.utils.iterableEquality]);