Skip to content

Commit

Permalink
[Tests] use for-each instead of foreach
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Nov 1, 2022
1 parent 157a4fe commit 8baba96
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"es-value-fixtures": "^1.4.2",
"es6-shim": "^0.35.6",
"eslint": "=8.8.0",
"foreach": "^2.0.6",
"for-each": "^0.3.3",
"in-publish": "^2.0.1",
"make-arrow-function": "~1.1.0",
"nyc": "^10.3.2",
Expand Down
2 changes: 1 addition & 1 deletion test/native.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var hasBigInts = require('has-bigints')();
var arrowFunctions = require('make-arrow-function').list();
var hasArrowFunctionSupport = arrowFunctions.length > 0;
var objectEntries = require('object.entries');
var forEach = require('foreach');
var forEach = require('for-each');
var functionsHaveNames = require('functions-have-names')();
var inspect = require('object-inspect');
var v = require('es-value-fixtures');
Expand Down
2 changes: 1 addition & 1 deletion test/why.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var hasSymbolShams = require('has-symbols/shams')();
var hasBigInts = require('has-bigints')();
var arrowFunctions = require('make-arrow-function').list();
var objectEntries = require('object.entries');
var forEach = require('foreach');
var forEach = require('for-each');
var functionsHaveNames = require('functions-have-names')();
var inspect = require('object-inspect');
var v = require('es-value-fixtures');
Expand Down

0 comments on commit 8baba96

Please sign in to comment.