@@ -120,7 +120,7 @@ tape( 'the function prints a formatted message for each element in an array', fu
120120 var j ;
121121
122122 logEach = proxyquire ( './../lib/main.js' , {
123- './logger.js ' : logger
123+ '@stdlib/console/log ' : logger
124124 } ) ;
125125
126126 j = 0 ;
@@ -153,7 +153,7 @@ tape( 'the function prints a formatted message for each pair of array elements (
153153 var j ;
154154
155155 logEach = proxyquire ( './../lib/main.js' , {
156- './logger.js ' : logger
156+ '@stdlib/console/log ' : logger
157157 } ) ;
158158
159159 j = 0 ;
@@ -186,7 +186,7 @@ tape( 'the function repeatedly prints a formatted message (three arrays)', funct
186186 var j ;
187187
188188 logEach = proxyquire ( './../lib/main.js' , {
189- './logger.js ' : logger
189+ '@stdlib/console/log ' : logger
190190 } ) ;
191191
192192 j = 0 ;
@@ -221,7 +221,7 @@ tape( 'the function repeatedly prints a formatted message (four arrays)', functi
221221 var j ;
222222
223223 logEach = proxyquire ( './../lib/main.js' , {
224- './logger.js ' : logger
224+ '@stdlib/console/log ' : logger
225225 } ) ;
226226
227227 j = 0 ;
@@ -258,7 +258,7 @@ tape( 'the function broadcasts non-array arguments (one array, one scalar)', fun
258258 var j ;
259259
260260 logEach = proxyquire ( './../lib/main.js' , {
261- './logger.js ' : logger
261+ '@stdlib/console/log ' : logger
262262 } ) ;
263263
264264 j = 0 ;
@@ -291,7 +291,7 @@ tape( 'the function broadcasts non-array arguments (one scalar, one array)', fun
291291 var j ;
292292
293293 logEach = proxyquire ( './../lib/main.js' , {
294- './logger.js ' : logger
294+ '@stdlib/console/log ' : logger
295295 } ) ;
296296
297297 j = 0 ;
@@ -324,7 +324,7 @@ tape( 'the function broadcasts non-array elements (two arrays, one scalar)', fun
324324 var j ;
325325
326326 logEach = proxyquire ( './../lib/main.js' , {
327- './logger.js ' : logger
327+ '@stdlib/console/log ' : logger
328328 } ) ;
329329
330330 j = 0 ;
@@ -359,7 +359,7 @@ tape( 'the function broadcasts non-array arguments (one scalar, two arrays)', fu
359359 var j ;
360360
361361 logEach = proxyquire ( './../lib/main.js' , {
362- './logger.js ' : logger
362+ '@stdlib/console/log ' : logger
363363 } ) ;
364364
365365 j = 0 ;
@@ -394,7 +394,7 @@ tape( 'the function prints a formatted message when provided only a scalar argum
394394 var j ;
395395
396396 logEach = proxyquire ( './../lib/main.js' , {
397- './logger.js ' : logger
397+ '@stdlib/console/log ' : logger
398398 } ) ;
399399
400400 j = 0 ;
@@ -429,7 +429,7 @@ tape( 'the function prints a formatted message when only provided two scalar arg
429429 var j ;
430430
431431 logEach = proxyquire ( './../lib/main.js' , {
432- './logger.js ' : logger
432+ '@stdlib/console/log ' : logger
433433 } ) ;
434434
435435 j = 0 ;
0 commit comments