ソースを参照

Added dot to test assertion to match styleCI

Marcel Pociot 9 年 前
コミット
0a37de975e
1 ファイル変更1 行追加1 行削除
  1. 1 1
      tests/ApiDocGeneratorTest.php

+ 1 - 1
tests/ApiDocGeneratorTest.php

@@ -28,7 +28,7 @@ class ApiDocGeneratorTest extends Orchestra\Testbench\TestCase
         $route = new Route(['GET'], '/api/test', ['uses' => 'TestController@parseMethodDescription']);
         $parsed = $this->generator->processRoute($route);
 
-        $this->assertEquals('Example title', $parsed['title']);
+        $this->assertEquals('Example title.', $parsed['title']);
         $this->assertEquals("This will be the long description.\nIt can also be multiple lines long.", $parsed['description']);
     }