Skip to content

Commit 0e04ba7

Browse files
committed
remove redundant .map that checks typeof r === 'object' ... rows are stdout which is String
1 parent 7db3bdc commit 0e04ba7

File tree

1 file changed

+4
-11
lines changed

1 file changed

+4
-11
lines changed

test/array.js

+4-11
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,14 @@ var tap = require('tap');
44
var trim = require('string.prototype.trim');
55
var concat = require('concat-stream');
66

7-
tap.test('array test', function (assert) {
8-
assert.plan(1);
7+
tap.test('array test', function (tt) {
8+
tt.plan(1);
99

1010
var test = tape.createHarness();
1111

12-
test.createStream().pipe(concat(function (body) {
12+
test.createStream().pipe(concat(function (rows) {
1313

14-
var rs = body.toString('utf8').split('\n').map(function (r) {
15-
if (r && typeof r === 'object') {
16-
return { id : r.id, ok : r.ok, name : trim(r.name) };
17-
}
18-
else return r;
19-
});
20-
21-
assert.same(rs, [
14+
tt.same(rows.toString('utf8').split('\n'), [
2215
'TAP version 13',
2316
'# array',
2417
'ok 1 should be equivalent',

0 commit comments

Comments
 (0)