Skip to content

Commit 9420e07

Browse files
author
James Halliday
committed
update the tests to use createStream
1 parent 5544d26 commit 9420e07

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

test/circular-things.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ tap.test('circular test', function (assert) {
3232
// tt.equal(10, 10)
3333
// tt.end()
3434

35-
test.stream.pipe(tc);
35+
test.createStream().pipe(tc);
3636

3737
test("circular", function (t) {
3838
t.plan(1)

test/fail.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ tap.test('array test', function (tt) {
3131
]);
3232
});
3333

34-
test.stream.pipe(tc);
34+
test.createStream().pipe(tc);
3535

3636
test('array', function (t) {
3737
t.plan(5);

test/nested.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ tap.test('array test', function (tt) {
3636
]);
3737
});
3838

39-
test.stream.pipe(tc);
39+
test.createStream().pipe(tc);
4040

4141
test('nested array test', function (t) {
4242
t.plan(5);

test/only.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ tap.test('tape only test', function (tt) {
2929
tt.end()
3030
})
3131

32-
test.stream.pipe(tc)
32+
test.createStream().pipe(tc)
3333

3434
test("never run fail", function (t) {
3535
t.equal(true, false)

test/throw.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ tap.test('throw test', function (tt) {
2828
]);
2929
});
3030

31-
test.stream.pipe(tc);
31+
test.createStream().pipe(tc);
3232

3333
test('thrower', function (t) {
3434
t.equal(1 + 1, 2);

test/too_many.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ tap.test('array test', function (tt) {
3232
]);
3333
});
3434

35-
test.stream.pipe(tc);
35+
test.createStream().pipe(tc);
3636

3737
test('array', function (t) {
3838
t.plan(3);

0 commit comments

Comments
 (0)