@@ -92,7 +92,7 @@ tape( 'if `stdin` is run in TTY mode and the encoding is not set, the function r
9292 stream = new Stream ( ) ;
9393 stream . isTTY = true ;
9494
95- stdin = proxyquire ( './../lib/read .js' , {
95+ stdin = proxyquire ( './../lib/main .js' , {
9696 '@stdlib/streams/base/stdin' : stream ,
9797 '@noCallThru' : true
9898 } ) ;
@@ -116,7 +116,7 @@ tape( 'if `stdin` is run in TTY mode and the encoding is set, the function retur
116116 stream = new Stream ( ) ;
117117 stream . isTTY = true ;
118118
119- stdin = proxyquire ( './../lib/read .js' , {
119+ stdin = proxyquire ( './../lib/main .js' , {
120120 '@stdlib/streams/base/stdin' : stream ,
121121 '@noCallThru' : true
122122 } ) ;
@@ -141,7 +141,7 @@ tape( 'if an error is encountered while reading from `stdin`, the error is retur
141141 stream = new Stream ( ) ;
142142 stream . isTTY = false ;
143143
144- stdin = proxyquire ( './../lib/read .js' , {
144+ stdin = proxyquire ( './../lib/main .js' , {
145145 '@stdlib/streams/base/stdin' : stream ,
146146 '@noCallThru' : true
147147 } ) ;
@@ -165,7 +165,7 @@ tape( 'if an error is encountered while reading from `stdin`, the error is retur
165165 stream = new Stream ( ) ;
166166 stream . isTTY = false ;
167167
168- stdin = proxyquire ( './../lib/read .js' , {
168+ stdin = proxyquire ( './../lib/main .js' , {
169169 '@stdlib/streams/base/stdin' : stream ,
170170 '@noCallThru' : true
171171 } ) ;
@@ -189,7 +189,7 @@ tape( 'if the `encoding` argument is not set, the function returns `stdin` data
189189 stream = new Stream ( ) ;
190190 stream . isTTY = false ;
191191
192- stdin = proxyquire ( './../lib/read .js' , {
192+ stdin = proxyquire ( './../lib/main .js' , {
193193 '@stdlib/streams/base/stdin' : stream ,
194194 '@noCallThru' : true
195195 } ) ;
@@ -218,7 +218,7 @@ tape( 'if the `encoding` argument is set, the function returns `stdin` data as a
218218 stream = new Stream ( ) ;
219219 stream . isTTY = false ;
220220
221- stdin = proxyquire ( './../lib/read .js' , {
221+ stdin = proxyquire ( './../lib/main .js' , {
222222 '@stdlib/streams/base/stdin' : stream ,
223223 '@noCallThru' : true
224224 } ) ;
@@ -248,7 +248,7 @@ tape( 'if the `encoding` argument is not set and no `stdin` data, the function r
248248 stream = new Stream ( ) ;
249249 stream . isTTY = false ;
250250
251- stdin = proxyquire ( './../lib/read .js' , {
251+ stdin = proxyquire ( './../lib/main .js' , {
252252 '@stdlib/streams/base/stdin' : stream ,
253253 '@noCallThru' : true
254254 } ) ;
@@ -275,7 +275,7 @@ tape( 'if the `encoding` argument is set and no `stdin` data, the function retur
275275 stream = new Stream ( ) ;
276276 stream . isTTY = false ;
277277
278- stdin = proxyquire ( './../lib/read .js' , {
278+ stdin = proxyquire ( './../lib/main .js' , {
279279 '@stdlib/streams/base/stdin' : stream ,
280280 '@noCallThru' : true
281281 } ) ;
0 commit comments