@@ -53,7 +53,7 @@ tape( 'if `Symbol.toStringTag` is supported, the function guards against objects
5353 var mock ;
5454
5555 isRegExp = proxyquire ( './../lib/main.js' , {
56- '@stdlib/assert/ has-tostringtag-support' : detect
56+ '@stdlib/assert- has-tostringtag-support' : detect
5757 } ) ;
5858
5959 mock = {
@@ -80,7 +80,7 @@ tape( 'if `Symbol.toStringTag` is supported, the function guards against objects
8080
8181tape ( 'if `Symbol.toStringTag` is supported, the function returns `true` if provided a regular expression' , opts , function test ( t ) {
8282 var isRegExp = proxyquire ( './../lib/main.js' , {
83- '@stdlib/assert/ has-tostringtag-support' : detect
83+ '@stdlib/assert- has-tostringtag-support' : detect
8484 } ) ;
8585
8686 t . strictEqual ( isRegExp ( / b e e p / ) , true , 'returns true' ) ;
@@ -94,7 +94,7 @@ tape( 'if `Symbol.toStringTag` is supported, the function returns `true` if prov
9494
9595tape ( 'if `Symbol.toStringTag` is not supported, the function attempts to determine the native class' , function test ( t ) {
9696 var isRegExp = proxyquire ( './../lib/main.js' , {
97- '@stdlib/assert/ has-tostringtag-support' : detect
97+ '@stdlib/assert- has-tostringtag-support' : detect
9898 } ) ;
9999
100100 t . strictEqual ( isRegExp ( / b e e p / ) , true , 'returns true' ) ;
0 commit comments