diff --git a/config/container.php b/config/container.php index f6d4d5319..b63c21294 100644 --- a/config/container.php +++ b/config/container.php @@ -1,7 +1,7 @@ insertUser([ 'username' => 'admin', - 'email' => 'mail@example.com' + 'email' => 'mail@example.com', ]); static::assertSame(1, $actual); diff --git a/tests/TestCase/Domain/User/UserCreatorTest.php b/tests/TestCase/Domain/User/UserCreatorTest.php index d7cdbe274..b189fa2ff 100644 --- a/tests/TestCase/Domain/User/UserCreatorTest.php +++ b/tests/TestCase/Domain/User/UserCreatorTest.php @@ -40,7 +40,7 @@ public function testCreateUser(): void $actual = $service->createUser([ 'username' => 'admin', - 'email' => 'mail@example.com' + 'email' => 'mail@example.com', ]); static::assertSame(1, $actual);