Skip to content

Commit

Permalink
Fix flaky integration test (#9626)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcompiles authored Apr 8, 2024
1 parent e72f34b commit 451b94a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/utils/src/alternatives.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,5 +141,5 @@ export async function findAlternativeFiles(
});
}

return fuzzySearch(potentialFiles, fileSpecifier).slice(0, 2);
return fuzzySearch(potentialFiles.sort(), fileSpecifier).slice(0, 2);
}

0 comments on commit 451b94a

Please sign in to comment.