소스 검색

Applied fixes from StyleCI

Marcel Pociot 9 년 전
부모
커밋
59fe456d68
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  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);
     }