Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / token / tests / src / Kernel / RandomTest.php
index a4b09303dbae21402893a5b4faef0f013b880aad..5162846cecafa81ff63b26e7fea3347c49cbc4d3 100644 (file)
@@ -10,18 +10,19 @@ namespace Drupal\Tests\token\Kernel;
 class RandomTest extends KernelTestBase {
 
   function testRandomTokens() {
-    $tokens = array(
+    $tokens = [
       'number' => '[0-9]{1,}',
       'hash:md5' => '[0-9a-f]{32}',
       'hash:sha1' => '[0-9a-f]{40}',
       'hash:sha256' => '[0-9a-f]{64}',
       'hash:invalid-algo' => NULL,
-    );
+    ];
 
-    $first_set = $this->assertTokens('random', array(), $tokens, array('regex' => TRUE));
-    $second_set = $this->assertTokens('random', array(), $tokens, array('regex' => TRUE));
+    $first_set = $this->assertTokens('random', [], $tokens, ['regex' => TRUE]);
+    $second_set = $this->assertTokens('random', [], $tokens, ['regex' => TRUE]);
     foreach ($first_set as $token => $value) {
       $this->assertNotIdentical($first_set[$token], $second_set[$token]);
     }
   }
+
 }