Skip to content

Commit

Permalink
Merge branch 'laravel-11' of https://github.com/zaengle/pipeline into…
Browse files Browse the repository at this point in the history
… laravel-11
  • Loading branch information
LoganTFox committed Mar 18, 2024
2 parents 388d156 + 6a1d299 commit 12ae35d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/PipelineTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ public function it_uses_db_transactions_on_a_successful_run()
->once();

app(Pipeline::class)->pipe(
new TestTraveler(),
[TestPipe::class],
true
);
new TestTraveler(),
[TestPipe::class],
true
);
}

/** @test */
Expand All @@ -67,9 +67,9 @@ public function it_uses_db_transactions_on_a_failed_run()
->once();

app(Pipeline::class)->pipe(
new TestTraveler(),
[FailedTestPipe::class],
true
new TestTraveler(),
[FailedTestPipe::class],
true
);
}

Expand Down

0 comments on commit 12ae35d

Please sign in to comment.