From 6759e0c193b7ecc1d3e192a057ade4a50d65ea88 Mon Sep 17 00:00:00 2001 From: Philipp Holzer Date: Wed, 24 Jul 2019 12:46:22 +0200 Subject: [PATCH] Remove superfluous "print" --- tests/src/Core/SystemTest.php | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/src/Core/SystemTest.php b/tests/src/Core/SystemTest.php index 6b0781198..a385d1b35 100644 --- a/tests/src/Core/SystemTest.php +++ b/tests/src/Core/SystemTest.php @@ -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); }