From: Reedy Date: Sun, 24 Jan 2016 12:39:47 +0000 (+0000) Subject: Remove no-op parameter from UIDGeneratorTest X-Git-Tag: 1.31.0-rc.0~7834^2 X-Git-Url: http://git.cyclocoop.org/fichier?a=commitdiff_plain;h=ca87078f16fd8bab5ea7e3ee41b40a1f1ed93a8c;p=lhc%2Fweb%2Fwiklou.git Remove no-op parameter from UIDGeneratorTest Change-Id: Ifdbfa007d7f5011403572d3bf2e1ac559ad93458 --- diff --git a/tests/phpunit/includes/utils/UIDGeneratorTest.php b/tests/phpunit/includes/utils/UIDGeneratorTest.php index 7123b943fc..e79a6b06e5 100644 --- a/tests/phpunit/includes/utils/UIDGeneratorTest.php +++ b/tests/phpunit/includes/utils/UIDGeneratorTest.php @@ -79,7 +79,7 @@ class UIDGeneratorTest extends PHPUnit_Framework_TestCase { preg_match( '!^[0-9a-f]{12}1[0-9a-f]{3}[89ab][0-9a-f]{15}$!', $id ), "UID $id has the right format" ); - $id = UIDGenerator::newRawUUIDv1( UIDGenerator::QUICK_RAND ); + $id = UIDGenerator::newRawUUIDv1(); $this->assertEquals( true, preg_match( '!^[0-9a-f]{12}1[0-9a-f]{3}[89ab][0-9a-f]{15}$!', $id ), "UID $id has the right format" );