Invoke PHPUnit's assertions statically

This commit is contained in:
Daniel Londero
2020-10-04 00:35:14 +02:00
parent d426dbc684
commit 065d314608
99 changed files with 567 additions and 567 deletions

View File

@@ -80,7 +80,7 @@ class SingleStepCreateShortUrlActionTest extends TestCase
$resp = $this->action->handle($request);
$this->assertEquals(200, $resp->getStatusCode());
self::assertEquals(200, $resp->getStatusCode());
$findApiKey->shouldHaveBeenCalled();
$generateShortCode->shouldHaveBeenCalled();
}