From 381684a330b845dc373717e8454e7df81dda08ac Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Fri, 6 Aug 2021 19:59:31 +0000 Subject: [PATCH] Apply fixes from StyleCI --- tests/DriverTest.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/DriverTest.php b/tests/DriverTest.php index 4fb1bfa..eaf665e 100644 --- a/tests/DriverTest.php +++ b/tests/DriverTest.php @@ -32,6 +32,13 @@ class DriverTest extends TestCase protected $model = RequestPayment::class; + protected function setUp(): void + { + parent::setUp(); + + $this->runSeeders(); + } + public function testStart() { $response = $this->driver()->start(); @@ -81,13 +88,6 @@ public function testRefund() $this->assertSame('CANCELED', $response->getStatus()); } - protected function setUp(): void - { - parent::setUp(); - - $this->runSeeders(); - } - protected function driver(): DriverContract { $model = $this->payment();