Skip to content

Commit

Permalink
err_ -> execError
Browse files Browse the repository at this point in the history
Co-authored-by: John Hobbs <[email protected]>
  • Loading branch information
codykaup and jmhobbs committed Sep 12, 2024
1 parent d8f3708 commit 83682cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions node-src/lib/logSerializers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ it('strips off envPairs', () => {
let err;
try {
execSync('some hot garbage', { stdio: 'ignore' });
} catch (err_) {
err = err_;
} catch (execError) {
err = execError;
}
expect((errorSerializer(err) as any).envPairs).toBeUndefined();
});
Expand Down

0 comments on commit 83682cb

Please sign in to comment.