Skip to content

Commit 507c638

Browse files
authored
Update FeedSubscriptionsControllerTest.php
Remove unused vars
1 parent 645b3a2 commit 507c638

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/TestCase/Controller/FeedSubscriptionsControllerTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ public function testMarkItemsNone(): void
324324
{
325325
$category = $this->makeFeedCategory('Blogs');
326326
$feed = $this->makeFeed('https://example.com/feed.xml');
327-
$subscription = $this->makeFeedSubscription($category->id, $feed->id);
327+
$this->makeFeedSubscription($category->id, $feed->id);
328328

329329
$this->login();
330330
$this->enableCsrfToken();
@@ -338,7 +338,7 @@ public function testMarkItemsTooMany(): void
338338
{
339339
$category = $this->makeFeedCategory('Blogs');
340340
$feed = $this->makeFeed('https://example.com/feed.xml');
341-
$subscription = $this->makeFeedSubscription($category->id, $feed->id);
341+
$this->makeFeedSubscription($category->id, $feed->id);
342342

343343
$this->login();
344344
$this->enableCsrfToken();

0 commit comments

Comments
 (0)