Procházet zdrojové kódy

Applied fixes from StyleCI

Marcel Pociot před 9 roky
rodič
revize
59fe456d68
1 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. 3 3
      tests/GenerateDocumentationTest.php

+ 3 - 3
tests/GenerateDocumentationTest.php

@@ -64,9 +64,9 @@ class GenerateDocumentationTest extends TestCase
         $output = $this->artisan('api:generate', [
             '--routePrefix' => 'api/*',
         ]);
-        
-        $generatedMarkdown = file_get_contents(__DIR__ . '/../public/docs/source/index.md');
-        $fixtureMarkdown   = file_get_contents(__DIR__ . '/Fixtures/index.md');
+
+        $generatedMarkdown = file_get_contents(__DIR__.'/../public/docs/source/index.md');
+        $fixtureMarkdown = file_get_contents(__DIR__.'/Fixtures/index.md');
         $this->assertSame($generatedMarkdown, $fixtureMarkdown);
     }