summaryrefslogtreecommitdiffstats
path: root/Core/Tests/Util/SecureRandomTest.php
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2015-03-30 17:59:03 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2015-03-30 17:59:03 +0200
commitd8fd10cb0a50be559132d75f11160f5c21f2d5c8 (patch)
tree79515a5a2f9a0522e6243f5982e6c90d0a952260 /Core/Tests/Util/SecureRandomTest.php
parent05006144a36061d7a30ac4522e24f1b0a1ac82b6 (diff)
parentb071a103319fc4d8549e17e575c75b8b3417d8cd (diff)
downloadsymfony-security-d8fd10cb0a50be559132d75f11160f5c21f2d5c8.zip
symfony-security-d8fd10cb0a50be559132d75f11160f5c21f2d5c8.tar.gz
symfony-security-d8fd10cb0a50be559132d75f11160f5c21f2d5c8.tar.bz2
Merge branch '2.7'
* 2.7: [RFC][Console] Added console style guide helpers (v2) [Validator] Add missing pt_BR translations [Translation][Profiler] Added a Translation profiler. Add parsing of hexadecimal strings for PHP 7 [VarDumper] Add filters to casters Trim final stop from deprecation message [Configuration] improve description for ignoreExtraKeys on ArrayNodeDefinition [Validator] Added missing Hungarian translation [Validator] Fixed grammar in Hungarian translation CS: Unary operators should be placed adjacent to their operands CS: Binary operators should be arounded by at least one space remove useless tests that fail in php 7 [Translator] fix test for php 7 compatibility [VarDumper] Add VarDumperTestCase and related trait Update phpdoc of ProcessBuilder#setPrefix() Conflicts: src/Symfony/Bridge/ProxyManager/Tests/LazyProxy/Fixtures/php/lazy_service.php src/Symfony/Component/Routing/Matcher/ApacheUrlMatcher.php src/Symfony/Component/Routing/Matcher/Dumper/ApacheMatcherDumper.php src/Symfony/Component/VarDumper/Cloner/AbstractCloner.php
Diffstat (limited to 'Core/Tests/Util/SecureRandomTest.php')
-rw-r--r--Core/Tests/Util/SecureRandomTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Tests/Util/SecureRandomTest.php b/Core/Tests/Util/SecureRandomTest.php
index 590efd3..5dfe1c8 100644
--- a/Core/Tests/Util/SecureRandomTest.php
+++ b/Core/Tests/Util/SecureRandomTest.php
@@ -49,7 +49,7 @@ class SecureRandomTest extends \PHPUnit_Framework_TestCase
$f += $c[$i] * $c[$i];
}
- $Y = 16/5000 * $f - 5000;
+ $Y = 16 / 5000 * $f - 5000;
$this->assertTrue($Y > 1.03 && $Y < 57.4, 'Poker test failed, Y = '.$Y);
}