From 3b43ec4755f7151cbeb21cfda2052910419a2444 Mon Sep 17 00:00:00 2001 From: webchick Date: Tue, 22 Jan 2013 13:58:21 -0800 Subject: [PATCH] Issue #1895702 by alexpott: Fixed Random failures in Drupal\system\Tests\Entity\EntityTranslationTest --- .../lib/Drupal/system/Tests/Entity/EntityTranslationTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityTranslationTest.php b/core/modules/system/lib/Drupal/system/Tests/Entity/EntityTranslationTest.php index b658cd93b72..4a6104c8f27 100644 --- a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityTranslationTest.php +++ b/core/modules/system/lib/Drupal/system/Tests/Entity/EntityTranslationTest.php @@ -245,7 +245,7 @@ class EntityTranslationTest extends WebTestBase { if ($langcode != $default_langcode) { $properties[$langcode] = array( 'name' => array(0 => $this->randomName()), - 'user_id' => array(0 => mt_rand(0, 127)), + 'user_id' => array(0 => mt_rand(128, 256)), ); } else {