Skip to content

Commit

Permalink
make the result identical
Browse files Browse the repository at this point in the history
  • Loading branch information
Aslemammad committed Nov 21, 2023
1 parent aa9a56e commit 65c1880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/migrate-test-e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const args = {
};

const argsStr = Object.entries(args)
.map(([k, v]) => `${k}${v[1] ? ` "${v[1]}"` : ""}`)
.map(([k, v]) => `${k}${v[1] ? ` ${v[1]}` : ""}`)
.join(" ");
const argsObj = Object.fromEntries(
Object.values(args)
Expand Down

0 comments on commit 65c1880

Please sign in to comment.