Skip to content

Commit

Permalink
Remover superflous label from test conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenmaguire committed Jan 12, 2025
1 parent 96a9a19 commit 4d936c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/AsPipelineTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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([
Expand All @@ -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')
Expand Down

0 comments on commit 4d936c0

Please sign in to comment.