@@ -47,7 +47,7 @@ tape( 'the function returns a nonnegative integer array', function test( t ) {
4747
4848tape ( 'if available, the module uses the `performance` API' , function test ( t ) {
4949 var tic = proxyquire ( './../lib/browser.js' , {
50- 'system. global' : getGlobal
50+ '@stdlib/utils/ global' : getGlobal
5151 } ) ;
5252 t . strictEqual ( tic . length , 0 , 'number of parameters is equal to zero' ) ;
5353 t . strictEqual ( isNonNegativeIntegerArray ( tic ( ) ) , true , 'returns a nonnegative integer array' ) ;
@@ -64,7 +64,7 @@ tape( 'if available, the module uses the `performance` API', function test( t )
6464
6565tape ( 'the module accommodates browser environments lacking a `performance` API' , function test ( t ) {
6666 var tic = proxyquire ( './../lib/browser.js' , {
67- 'system. global' : getGlobal
67+ '@stdlib/utils/ global' : getGlobal
6868 } ) ;
6969 t . strictEqual ( tic . length , 0 , 'number of parameters is equal to zero' ) ;
7070 t . strictEqual ( isNonNegativeIntegerArray ( tic ( ) ) , true , 'returns a nonnegative integer array' ) ;
@@ -77,7 +77,7 @@ tape( 'the module accommodates browser environments lacking a `performance` API'
7777
7878tape ( 'the module accommodates older Firefox environments' , function test ( t ) {
7979 var tic = proxyquire ( './../lib/browser.js' , {
80- 'system. global' : getGlobal
80+ '@stdlib/utils/ global' : getGlobal
8181 } ) ;
8282 t . strictEqual ( tic . length , 0 , 'number of parameters is equal to zero' ) ;
8383 t . strictEqual ( isNonNegativeIntegerArray ( tic ( ) ) , true , 'returns a nonnegative integer array' ) ;
@@ -94,7 +94,7 @@ tape( 'the module accommodates older Firefox environments', function test( t ) {
9494
9595tape ( 'the module accommodates older IE environments' , function test ( t ) {
9696 var tic = proxyquire ( './../lib/browser.js' , {
97- 'system. global' : getGlobal
97+ '@stdlib/utils/ global' : getGlobal
9898 } ) ;
9999 t . strictEqual ( tic . length , 0 , 'number of parameters is equal to zero' ) ;
100100 t . strictEqual ( isNonNegativeIntegerArray ( tic ( ) ) , true , 'returns a nonnegative integer array' ) ;
@@ -111,7 +111,7 @@ tape( 'the module accommodates older IE environments', function test( t ) {
111111
112112tape ( 'the module accommodates older Opera environments' , function test ( t ) {
113113 var tic = proxyquire ( './../lib/browser.js' , {
114- 'system. global' : getGlobal
114+ '@stdlib/utils/ global' : getGlobal
115115 } ) ;
116116 t . strictEqual ( tic . length , 0 , 'number of parameters is equal to zero' ) ;
117117 t . strictEqual ( isNonNegativeIntegerArray ( tic ( ) ) , true , 'returns a nonnegative integer array' ) ;
@@ -128,7 +128,7 @@ tape( 'the module accommodates older Opera environments', function test( t ) {
128128
129129tape ( 'the module accommodates older Webkit environments' , function test ( t ) {
130130 var tic = proxyquire ( './../lib/browser.js' , {
131- 'system. global' : getGlobal
131+ '@stdlib/utils/ global' : getGlobal
132132 } ) ;
133133 t . strictEqual ( tic . length , 0 , 'number of parameters is equal to zero' ) ;
134134 t . strictEqual ( isNonNegativeIntegerArray ( tic ( ) ) , true , 'returns a nonnegative integer array' ) ;
0 commit comments