diff --git a/tests/integration/notifications/NotificationsTest.php b/tests/integration/notifications/NotificationsTest.php index 3439045..9be1ce2 100644 --- a/tests/integration/notifications/NotificationsTest.php +++ b/tests/integration/notifications/NotificationsTest.php @@ -61,19 +61,19 @@ public function notification_sent_when_new_discussion_in_followed_tag() $response = $this->send( $this->request('POST', '/api/discussions', [ 'authenticatedAs' => 1, - 'json' => [ + 'json' => [ 'data' => [ 'attributes' => [ - 'title' => 'New discussion', + 'title' => 'New discussion', 'content' => '

New Post

', ], 'relationships' => [ 'tags' => [ 'data' => [ - ['type' => 'tags', 'id' => 1] - ] - ] - ] + ['type' => 'tags', 'id' => 1], + ], + ], + ], ], ], ]) @@ -100,22 +100,19 @@ public function notification_sent_when_new_discussion_in_followed_tag() */ public function no_notification_sent_when_new_post_in_followed_tag() { - } /** * @test - */ + */ public function notification_sent_when_new_discussion_in_lurked_tag() { - } /** * @test - */ + */ public function notification_sent_when_new_post_in_lurked_tag() { - } }