@@ -902,7 +902,7 @@ tap.test('bundled dependencies of internal packages', async t => {
902902 rule7 . apply ( t , dir , resolved , asserted )
903903
904904 const isexePath = path . join ( dir , 'node_modules' , 'isexe' )
905- t . equals ( isexePath , fs . realpathSync ( isexePath ) )
905+ t . equal ( isexePath , fs . realpathSync ( isexePath ) )
906906} )
907907
908908tap . test ( 'nested bundled dependencies of internal packages' , async t => {
@@ -954,7 +954,7 @@ tap.test('nested bundled dependencies of internal packages', async t => {
954954 rule7 . apply ( t , dir , resolved , asserted )
955955
956956 const isexePath = path . join ( dir , 'node_modules' , 'isexe' )
957- t . equals ( isexePath , fs . realpathSync ( isexePath ) )
957+ t . equal ( isexePath , fs . realpathSync ( isexePath ) )
958958} )
959959
960960tap . test ( 'nested bundled dependencies of workspaces' , async t => {
@@ -998,9 +998,9 @@ tap.test('nested bundled dependencies of workspaces', async t => {
998998 rule7 . apply ( t , dir , resolved , asserted )
999999
10001000 const isexePath = path . join ( dir , 'node_modules' , 'isexe' )
1001- t . equals ( isexePath , fs . realpathSync ( isexePath ) )
1001+ t . equal ( isexePath , fs . realpathSync ( isexePath ) )
10021002 const whichPath = path . join ( dir , 'node_modules' , 'which' )
1003- t . equals ( whichPath , fs . realpathSync ( whichPath ) )
1003+ t . equal ( whichPath , fs . realpathSync ( whichPath ) )
10041004} )
10051005
10061006tap . test ( 'nested bundled dependencies of workspaces with conflicting isolated dep' , async t => {
@@ -1054,9 +1054,9 @@ tap.test('nested bundled dependencies of workspaces with conflicting isolated de
10541054 rule7 . apply ( t , dir , resolved , asserted )
10551055
10561056 const isexePath = path . join ( dir , 'packages' , 'bar' , 'node_modules' , 'isexe' )
1057- t . equals ( isexePath , fs . realpathSync ( isexePath ) )
1057+ t . equal ( isexePath , fs . realpathSync ( isexePath ) )
10581058 const whichPath = path . join ( dir , 'packages' , 'bar' , 'node_modules' , 'which' )
1059- t . equals ( whichPath , fs . realpathSync ( whichPath ) )
1059+ t . equal ( whichPath , fs . realpathSync ( whichPath ) )
10601060} )
10611061
10621062tap . test ( 'adding a dependency' , async t => {
0 commit comments