From ca87078f16fd8bab5ea7e3ee41b40a1f1ed93a8c Mon Sep 17 00:00:00 2001 From: Reedy Date: Sun, 24 Jan 2016 12:39:47 +0000 Subject: [PATCH] Remove no-op parameter from UIDGeneratorTest Change-Id: Ifdbfa007d7f5011403572d3bf2e1ac559ad93458 --- tests/phpunit/includes/utils/UIDGeneratorTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" ); -- 2.20.1