diff --git a/lib/testing/Dev/test_hash_algorithms.php b/lib/testing/Dev/test_hash_algorithms.php index 5e55468fc..cce85073c 100644 --- a/lib/testing/Dev/test_hash_algorithms.php +++ b/lib/testing/Dev/test_hash_algorithms.php @@ -14,7 +14,7 @@ if (!isset($argv[1]) || !isset($argv[2])) { * Test various hashing/encoding/etc on a string. * Class hash_algorithms */ -class hash_algorithms +class HashAlgorithms { /** * The input string. @@ -188,4 +188,4 @@ class hash_algorithms } } -new hash_algorithms($argv[1], $argv[2], ((isset($argv[3]) && strtolower($argv[3]) === 'true') ? true : false)); +new HashAlgorithms($argv[1], $argv[2], ((isset($argv[3]) && strtolower($argv[3]) === 'true') ? true : false));