From 4e7061b4c518268b8dbaa25df72669691ff267d6 Mon Sep 17 00:00:00 2001 From: Marcel Pociot Date: Mon, 18 Jul 2016 04:46:55 -0400 Subject: [PATCH] Applied fixes from StyleCI --- tests/GenerateDocumentationTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/GenerateDocumentationTest.php b/tests/GenerateDocumentationTest.php index c99d9117..af86d6e3 100644 --- a/tests/GenerateDocumentationTest.php +++ b/tests/GenerateDocumentationTest.php @@ -77,11 +77,11 @@ public function testAddsBindingsToGetRouteRules() $this->artisan('api:generate', [ '--routePrefix' => 'api/*', - '--bindings' => 'foo,bar' + '--bindings' => 'foo,bar', ]); - + $generatedMarkdown = file_get_contents(__DIR__.'/../public/docs/source/index.md'); - + $this->assertContains('Not in: `bar`', $generatedMarkdown); }