]> BookStack Code Mirror - bookstack/blobdiff - tests/DebugViewTest.php
Started work on details/summary blocks
[bookstack] / tests / DebugViewTest.php
index 3485b4598e77103d97049219fe15de00cd905528..63d6472b982c7d3efc5b12df538050485f4569a5 100644 (file)
@@ -42,13 +42,12 @@ class DebugViewTest extends TestCase
         $resp->assertSeeText('An unknown error occurred');
     }
 
-
     protected function getDebugViewForException(\Exception $exception): TestResponse
     {
         // Fake an error via social auth service used on login page
         $mockService = $this->mock(SocialAuthService::class);
         $mockService->shouldReceive('getActiveDrivers')->andThrow($exception);
+
         return $this->get('/login');
     }
-
-}
\ No newline at end of file
+}