1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 05:44:53 +00:00

Whitespace fixes

This commit is contained in:
J. King 2019-10-25 15:16:35 -04:00
parent 71c7cd8fb1
commit c59cdfef76
4 changed files with 5 additions and 5 deletions

View file

@ -642,7 +642,7 @@ class TestValueInfo extends \JKingWeb\Arsse\Test\AbstractTest {
public function testFlattenArray() { public function testFlattenArray() {
$arr = [1, [2, 3, [4, 5]], 6, [[7, 8], 9, 10]]; $arr = [1, [2, 3, [4, 5]], 6, [[7, 8], 9, 10]];
$exp = range(1,10); $exp = range(1, 10);
$this->assertSame($exp, I::flatten($arr)); $this->assertSame($exp, I::flatten($arr));
} }
} }