From ab149a7870281d4ed02806575734424849db755c Mon Sep 17 00:00:00 2001 From: Benjamin Brahmer Date: Tue, 3 Nov 2020 21:13:48 +0100 Subject: fix unittest Signed-off-by: Benjamin Brahmer --- tests/Unit/Controller/FeedApiControllerTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/Unit/Controller/FeedApiControllerTest.php b/tests/Unit/Controller/FeedApiControllerTest.php index 1dbac6f42..c87a9ff6c 100644 --- a/tests/Unit/Controller/FeedApiControllerTest.php +++ b/tests/Unit/Controller/FeedApiControllerTest.php @@ -149,8 +149,8 @@ class FeedApiControllerTest extends TestCase $this->feedService->expects($this->once()) ->method('delete') ->with( - $this->equalTo(2), - $this->equalTo($this->user->getUID()) + $this->equalTo($this->user->getUID()), + $this->equalTo(2) ); $this->feedAPI->delete(2); -- cgit v1.2.3