From 30c05be8605c6501d2016f768670d49f8dd43090 Mon Sep 17 00:00:00 2001 From: Xheni Myrtaj Date: Sat, 1 Jun 2019 00:15:59 +0200 Subject: [PATCH] [BUGFIX] Fix the expected number in an integration test (#119) Signed-off-by: Xheni Myrtaj --- tests/Integration/Controller/ListControllerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Integration/Controller/ListControllerTest.php b/tests/Integration/Controller/ListControllerTest.php index 4b449e4..db5f8e3 100644 --- a/tests/Integration/Controller/ListControllerTest.php +++ b/tests/Integration/Controller/ListControllerTest.php @@ -408,6 +408,6 @@ public function getListSubscribersCountWithCurrentSessionKeyForExistingListWithS $this->authenticatedJsonRequest('get', '/api/v2/lists/2/subscribers/count'); $responseContent = $this->getResponseContentAsInt(); - static::assertSame(1, $responseContent); + static::assertSame(2, $responseContent); } }