Explorar o código

Added dot to test assertion to match styleCI

Marcel Pociot %!s(int64=9) %!d(string=hai) anos
pai
achega
0a37de975e
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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']);
     }