@@ -340,7 +340,7 @@ public function getListCountSubscribersForExistingListWithoutSessionKeyReturnsFo
340340 $ this ->getDataSet ()->addTable (static ::LISTS_TABLE_NAME , __DIR__ . '/Fixtures/SubscriberList.csv ' );
341341 $ this ->applyDatabaseChanges ();
342342
343- $ this ->client ->request ('get ' , '/api/v2/lists/1/countSubscribers ' );
343+ $ this ->client ->request ('get ' , '/api/v2/lists/1/countsubscribers ' );
344344
345345 $ this ->assertHttpForbidden ();
346346 }
@@ -357,7 +357,7 @@ public function getListCountSubscribersForExistingListWithExpiredSessionKeyRetur
357357
358358 $ this ->client ->request (
359359 'get ' ,
360- '/api/v2/lists/1/countSubscribers ' ,
360+ '/api/v2/lists/1/countsubscribers ' ,
361361 [],
362362 [],
363363 ['PHP_AUTH_USER ' => 'unused ' , 'PHP_AUTH_PW ' => 'cfdf64eecbbf336628b0f3071adba763 ' ]
@@ -374,7 +374,7 @@ public function getListCountSubscribersWithCurrentSessionKeyForExistingListRetur
374374 $ this ->getDataSet ()->addTable (static ::LISTS_TABLE_NAME , __DIR__ . '/Fixtures/SubscriberList.csv ' );
375375 $ this ->applyDatabaseChanges ();
376376
377- $ this ->authenticatedJsonRequest ('get ' , '/api/v2/lists/1/countSubscribers ' );
377+ $ this ->authenticatedJsonRequest ('get ' , '/api/v2/lists/1/countsubscribers ' );
378378
379379 $ this ->assertHttpOkay ();
380380 }
@@ -389,7 +389,7 @@ public function getListCountSubscribersWithCurrentSessionKeyForExistingListWithN
389389 $ this ->getDataSet ()->addTable (static ::SUBSCRIPTION_TABLE_NAME , __DIR__ . '/Fixtures/Subscription.csv ' );
390390 $ this ->applyDatabaseChanges ();
391391
392- $ this ->authenticatedJsonRequest ('get ' , '/api/v2/lists/3/countSubscribers ' );
392+ $ this ->authenticatedJsonRequest ('get ' , '/api/v2/lists/3/countsubscribers ' );
393393 $ response = $ this ->getResponseContentAsInt ();
394394
395395 static ::assertSame (0 , $ response );
@@ -405,7 +405,7 @@ public function getListCountSubscribersWithCurrentSessionKeyForExistingListWithS
405405 $ this ->getDataSet ()->addTable (static ::SUBSCRIPTION_TABLE_NAME , __DIR__ . '/Fixtures/Subscription.csv ' );
406406 $ this ->applyDatabaseChanges ();
407407
408- $ this ->authenticatedJsonRequest ('get ' , '/api/v2/lists/2/countSubscribers ' );
408+ $ this ->authenticatedJsonRequest ('get ' , '/api/v2/lists/2/countsubscribers ' );
409409 $ response = $ this ->getResponseContentAsInt ();
410410
411411 static ::assertSame (1 , $ response );
0 commit comments