diff --git a/tests/AsPipelineTest.php b/tests/AsPipelineTest.php index 908d4bd..e00cecc 100644 --- a/tests/AsPipelineTest.php +++ b/tests/AsPipelineTest.php @@ -154,7 +154,7 @@ function getPassable() { expect($passable->count)->toBe(4); }); -it('it can run as a noop/passthrough pipe in a pipeline, without a handle or asPipeline method', function () { +it('can run as a noop/passthrough pipe in a pipeline, without a handle or asPipeline method', function () { $anonymous = getAnonymous(); $passable = Pipeline::send(getPassable()) ->through([ @@ -169,7 +169,7 @@ function getPassable() { expect($passable->count)->toBe(2); }); -it('it can run with an arbitrary via method configured on Pipeline', function () { +it('can run with an arbitrary via method configured on Pipeline', function () { $anonymous = getAnonymous(); $passable = Pipeline::send(getPassable()) ->via('foobar')