From 96cd84fbe9b76c94ab48f487bdc046eb21f06d55 Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Wed, 13 Nov 2024 09:47:57 -0500 Subject: [PATCH] Update glob sorting comment link --- lib/cli/lookup-files.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cli/lookup-files.js b/lib/cli/lookup-files.js index ad7c9c1f8c..a587cf974c 100644 --- a/lib/cli/lookup-files.js +++ b/lib/cli/lookup-files.js @@ -94,7 +94,7 @@ module.exports = function lookupFiles( }) // glob@8 and earlier sorted results in en; glob@9 depends on OS sorting. // This preserves the older glob behavior. - // https://github.com/mochajs/mocha/pull/5250 + // https://github.com/mochajs/mocha/pull/5250/files#r1840469747 .sort((a, b) => a.localeCompare(b, 'en')) ); if (!files.length) {