Skip to content

Commit e9ab13f

Browse files
committed
Auto-generated commit
1 parent b19b6ec commit e9ab13f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

is-anagram/test/test.cli.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ tape( 'the command-line interface supports specifying a custom delimiter when us
201201
if ( error ) {
202202
t.fail( error.message );
203203
} else {
204-
t.strictEqual( stdout.toString(), 'true\nfalse', 'expected value' );
204+
t.strictEqual( stdout.toString(), 'true\nfalse\n', 'expected value' );
205205
t.strictEqual( stderr.toString(), '', 'does not print to `stderr`' );
206206
}
207207
t.end();
@@ -224,7 +224,7 @@ tape( 'the command-line interface supports specifying a custom delimiter when us
224224
if ( error ) {
225225
t.fail( error.message );
226226
} else {
227-
t.strictEqual( stdout.toString(), 'true\nfalse', 'expected value' );
227+
t.strictEqual( stdout.toString(), 'true\nfalse\n', 'expected value' );
228228
t.strictEqual( stderr.toString(), '', 'does not print to `stderr`' );
229229
}
230230
t.end();

is-ascii/test/test.cli.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ tape( 'the command-line interface supports use as a standard stream', opts, func
185185

186186
tape( 'the command-line interface supports specifying a custom delimiter when used as a standard stream (string)', opts, function test( t ) {
187187
var cmd = [
188-
'printf \'beep\t123\'',
188+
'printf \'beep\\'',
189189
'|',
190190
EXEC_PATH,
191191
fpath,
@@ -207,7 +207,7 @@ tape( 'the command-line interface supports specifying a custom delimiter when us
207207

208208
tape( 'the command-line interface supports specifying a custom delimiter when used as a standard stream (regexp)', opts, function test( t ) {
209209
var cmd = [
210-
'printf \'beep\t123\'',
210+
'printf \'beep\\'',
211211
'|',
212212
EXEC_PATH,
213213
fpath,

is-hex-string/test/test.cli.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ tape( 'the command-line interface supports specifying a custom delimiter when us
198198
if ( error ) {
199199
t.fail( error.message );
200200
} else {
201-
t.strictEqual( stdout.toString(), 'true\nfalseE\n', 'expected value' );
201+
t.strictEqual( stdout.toString(), 'true\nfalse\n', 'expected value' );
202202
t.strictEqual( stderr.toString(), '', 'does not print to `stderr`' );
203203
}
204204
t.end();
@@ -220,7 +220,7 @@ tape( 'the command-line interface supports specifying a custom delimiter when us
220220
if ( error ) {
221221
t.fail( error.message );
222222
} else {
223-
t.strictEqual( stdout.toString(), 'true\nfalseE\n', 'expected value' );
223+
t.strictEqual( stdout.toString(), 'true\nfalse\n', 'expected value' );
224224
t.strictEqual( stderr.toString(), '', 'does not print to `stderr`' );
225225
}
226226
t.end();

is-unc-path/test/test.cli.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ tape( 'the command-line interface supports use as a standard stream', opts, func
186186

187187
tape( 'the command-line interface supports specifying a custom delimiter when used as a standard stream (string)', opts, function test( t ) {
188188
var cmd = [
189-
'printf \'\\\\server\\share\\foo\t/foo/../bar\'',
189+
'printf "\\\\\\\\\\\\\\\\server\\\\\\\\share\t/foo/../bar"',
190190
'|',
191191
EXEC_PATH,
192192
fpath,
@@ -208,7 +208,7 @@ tape( 'the command-line interface supports specifying a custom delimiter when us
208208

209209
tape( 'the command-line interface supports specifying a custom delimiter when used as a standard stream (regexp)', opts, function test( t ) {
210210
var cmd = [
211-
'printf \'\\\\server\\share\\foo\t/foo/../bar\'',
211+
'printf "\\\\\\\\\\\\\\\\server\\\\\\\\share\t/foo/../bar"',
212212
'|',
213213
EXEC_PATH,
214214
fpath,

0 commit comments

Comments
 (0)