Fix spacing

This commit is contained in:
Dennis Eichhorn 2018-01-28 22:26:19 +01:00
parent 243f87405a
commit c2c9767470
5 changed files with 6 additions and 6 deletions

View File

@ -22,8 +22,8 @@ class MonotoneChainTest extends \PHPUnit\Framework\TestCase
self::assertEquals([['x' => 9, 'y' => 0]], MonotoneChain::createConvexHull([['x' => 9, 'y' => 0]]));
$points = [];
for($i = 0; $i < 10; $i++) {
for($j = 0; $j < 10; $j++) {
for ($i = 0; $i < 10; $i++) {
for ($j = 0; $j < 10; $j++) {
$points[] = ['x' => $i, 'y' => $j];
}
}

View File

@ -20,7 +20,7 @@ class CaesarTest extends \PHPUnit\Framework\TestCase
{
public function testVolume()
{
for($i = 0; $i < 100; $i++) {
for ($i = 0; $i < 100; $i++) {
$raw = StringUtils::generateString(1, 100);
$key = StringUtils::generateString(1, 100);

View File

@ -25,7 +25,7 @@ class GrayTest extends \PHPUnit\Framework\TestCase
public function testVolume()
{
for($i = 0; $i < 100; $i++) {
for ($i = 0; $i < 100; $i++) {
$raw = mt_rand(0, 2040140512);
self::assertEquals($raw, Gray::decode(Gray::encode($raw)));

View File

@ -27,7 +27,7 @@ class XorEncodingTest extends \PHPUnit\Framework\TestCase
public function testVolume()
{
for($i = 0; $i < 100; $i++) {
for ($i = 0; $i < 100; $i++) {
$raw = StringUtils::generateString(1, 100);
$key = StringUtils::generateString(1, 100);

View File

@ -19,7 +19,7 @@ class DateTimeTest extends \PHPUnit\Framework\TestCase
{
public function testRnG()
{
for($i = 0; $i < 100; $i++) {
for ($i = 0; $i < 100; $i++) {
$dateMin = new \DateTime();
$dateMax = new \DateTime();