Remove sort logic from inputs

This commit is contained in:
Vipul 2022-10-03 06:39:10 +00:00
parent ac8075791e
commit 68d96986b5
5 changed files with 7 additions and 27 deletions

View file

@ -147,7 +147,7 @@ test("restore with no key", async () => {
test("restore with too many keys should fail", async () => {
const path = "node_modules";
const key = "node-test";
const restoreKeys = [...Array(20).keys()].map(x => x.toString()).sort();
const restoreKeys = [...Array(20).keys()].map(x => x.toString());
testUtils.setInputs({
path: path,
key,