Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nodejs/node
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: bae6aa618dea70a8ebe5d1c6ea77924570c248a9
Choose a base ref
..
head repository: nodejs/node
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dd8d5d362487892e085577cfac90885b7f854d79
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 βˆ’2 lib/internal/test_runner/mock.js
4 changes: 2 additions & 2 deletions lib/internal/test_runner/mock.js
Original file line number Diff line number Diff line change
@@ -219,7 +219,7 @@ class MockTracker {

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

@@ -246,7 +246,7 @@ class MockTracker {

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