Skip to content

Commit

Permalink
[Tests] use get-proto directly
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Jan 2, 2025
1 parent f8ab58d commit 430032b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
"encoding": "^0.1.13",
"eslint": "=8.8.0",
"evalmd": "^0.0.19",
"get-proto": "^1.0.1",
"glob": "=10.3.7",
"in-publish": "^2.0.1",
"is-core-module": "^2.16.1",
Expand Down
2 changes: 1 addition & 1 deletion test/Uint8Array.fromBase64.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

var defineProperties = require('define-properties');
var forEach = require('es-abstract/helpers/forEach');
var getProto = require('es-abstract/helpers/getProto');
var getProto = require('get-proto');
var inspect = require('object-inspect');
var test = require('tape');

Expand Down
2 changes: 1 addition & 1 deletion test/Uint8Array.fromHex.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
var defineProperties = require('define-properties');
var test = require('tape');
var forEach = require('es-abstract/helpers/forEach');
var getProto = require('es-abstract/helpers/getProto');
var getProto = require('get-proto');

var index = require('../Uint8Array.fromHex');
var impl = require('../Uint8Array.fromHex/implementation');
Expand Down

0 comments on commit 430032b

Please sign in to comment.