Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Dec 17, 2024
1 parent 514d6d1 commit 3e95ec6
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions tests/integration/notifications/NotificationsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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' => '<t><p>New Post</p></t>',
],
'relationships' => [
'tags' => [
'data' => [
['type' => 'tags', 'id' => 1]
]
]
]
['type' => 'tags', 'id' => 1],
],
],
],
],
],
])
Expand All @@ -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()
{

}
}

0 comments on commit 3e95ec6

Please sign in to comment.