Skip to content

Commit

Permalink
test: fix permission fixtures lint
Browse files Browse the repository at this point in the history
PR-URL: nodejs#55819
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
  • Loading branch information
RafaelGSS authored and tpoisseau committed Nov 21, 2024
1 parent a42ba47 commit d56ed24
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/fixtures/permission/main-module.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
require('./required-module');
require('./required-module');
2 changes: 1 addition & 1 deletion test/fixtures/permission/main-module.mjs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
import './required-module.mjs';
import './required-module.mjs';
2 changes: 1 addition & 1 deletion test/fixtures/permission/required-module.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
console.log('ok');
console.log('ok');
2 changes: 1 addition & 1 deletion test/fixtures/permission/required-module.mjs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
console.log('ok');
console.log('ok');

0 comments on commit d56ed24

Please sign in to comment.