Skip to content

Commit

Permalink
Remove unnecessary space
Browse files Browse the repository at this point in the history
  • Loading branch information
ocodista authored Sep 13, 2023
1 parent 952380e commit 50d5315
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions lib/internal/test_runner/mock/mock.js
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,7 @@ class MockTracker {

if (getter === false) {
throw new ERR_INVALID_ARG_VALUE(
'options.getter',
getter,
'cannot be false',
'options.getter', getter, 'cannot be false',
);
}

Expand Down Expand Up @@ -342,9 +340,7 @@ class MockTracker {

if (setter === false) {
throw new ERR_INVALID_ARG_VALUE(
'options.setter',
setter,
'cannot be false',
'options.setter', setter, 'cannot be false',
);
}

Expand Down

0 comments on commit 50d5315

Please sign in to comment.