Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndrsn committed Dec 10, 2024
1 parent 21b1f2e commit 44af819
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/s3/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -405,8 +405,8 @@ function cli(cmd) {
const promise = new Promise((resolve, reject) => {
const child = exec(cmd, { env, cwd:'../../..' }, (err, stdout, stderr) => {
if (err) {
err.stdout = stdout;
err.stderr = stderr;
err.stdout = stdout; // eslint-disable-line no-param-reassign
err.stderr = stderr; // eslint-disable-line no-param-reassign
return reject(err);
}

Expand Down

0 comments on commit 44af819

Please sign in to comment.