From 6a1d299818e154b0f5ab663dbe52c37a126f20a0 Mon Sep 17 00:00:00 2001 From: Logan Fox <31284288+LoganTFox@users.noreply.github.com> Date: Mon, 18 Mar 2024 07:01:50 -0500 Subject: [PATCH] Apply fixes from StyleCI (#13) --- tests/PipelineTest.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/PipelineTest.php b/tests/PipelineTest.php index 956d26f..c9a11d3 100644 --- a/tests/PipelineTest.php +++ b/tests/PipelineTest.php @@ -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 */ @@ -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 ); }