mirror of
https://github.com/actions/cache.git
synced 2025-04-19 02:26:45 +00:00
Remove sort logic from inputs
This commit is contained in:
parent
ac8075791e
commit
68d96986b5
5 changed files with 7 additions and 27 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue