Remove superfluous "print"

This commit is contained in:
Philipp Holzer 2019-07-24 12:46:22 +02:00
parent 54533c57a5
commit 6759e0c193
No known key found for this signature in database
GPG Key ID: D8365C3D36B77D90
1 changed files with 0 additions and 1 deletions

View File

@ -9,7 +9,6 @@ class SystemTest extends TestCase
{
private function assertGuid($guid, $length, $prefix = '')
{
print $guid;
$length -= strlen($prefix);
$this->assertRegExp("/^" . $prefix . "[a-z0-9]{" . $length . "}?$/", $guid);
}