Skip to content

Commit

Permalink
Apply fixes from StyleCI (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
LoganTFox authored Mar 18, 2024
1 parent 9da542a commit 6a1d299
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 6a1d299

Please sign in to comment.