Remove superfluous "print"

This commit is contained in:
Philipp Holzer
2019-07-24 12:46:22 +02:00
parent 54533c57a5
commit 6759e0c193

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);
}