1
0
mirror of https://github.com/danog/amp.git synced 2024-12-03 09:57:51 +01:00

Fix code style

This commit is contained in:
Niklas Keller 2021-12-02 23:00:12 +01:00
parent e26a1123e9
commit fb7e5b69a9

View File

@ -31,8 +31,10 @@ class SomeTest extends TestCase
public function testTwoFirstThrowing(): void
{
self::assertSame(['two' => 2],
some(['one' => Future::error(new \Exception('foo')), 'two' => Future::complete(2)], 1));
self::assertSame(
['two' => 2],
some(['one' => Future::error(new \Exception('foo')), 'two' => Future::complete(2)], 1)
);
}
public function testTwoBothThrowing(): void