@@ -340,7 +340,7 @@ public function getListCountSubscribersForExistingListWithoutSessionKeyReturnsFo
340
340
$ this ->getDataSet ()->addTable (static ::LISTS_TABLE_NAME , __DIR__ . '/Fixtures/SubscriberList.csv ' );
341
341
$ this ->applyDatabaseChanges ();
342
342
343
- $ this ->client ->request ('get ' , '/api/v2/lists/1/countSubscribers ' );
343
+ $ this ->client ->request ('get ' , '/api/v2/lists/1/countsubscribers ' );
344
344
345
345
$ this ->assertHttpForbidden ();
346
346
}
@@ -357,7 +357,7 @@ public function getListCountSubscribersForExistingListWithExpiredSessionKeyRetur
357
357
358
358
$ this ->client ->request (
359
359
'get ' ,
360
- '/api/v2/lists/1/countSubscribers ' ,
360
+ '/api/v2/lists/1/countsubscribers ' ,
361
361
[],
362
362
[],
363
363
['PHP_AUTH_USER ' => 'unused ' , 'PHP_AUTH_PW ' => 'cfdf64eecbbf336628b0f3071adba763 ' ]
@@ -374,7 +374,7 @@ public function getListCountSubscribersWithCurrentSessionKeyForExistingListRetur
374
374
$ this ->getDataSet ()->addTable (static ::LISTS_TABLE_NAME , __DIR__ . '/Fixtures/SubscriberList.csv ' );
375
375
$ this ->applyDatabaseChanges ();
376
376
377
- $ this ->authenticatedJsonRequest ('get ' , '/api/v2/lists/1/countSubscribers ' );
377
+ $ this ->authenticatedJsonRequest ('get ' , '/api/v2/lists/1/countsubscribers ' );
378
378
379
379
$ this ->assertHttpOkay ();
380
380
}
@@ -389,7 +389,7 @@ public function getListCountSubscribersWithCurrentSessionKeyForExistingListWithN
389
389
$ this ->getDataSet ()->addTable (static ::SUBSCRIPTION_TABLE_NAME , __DIR__ . '/Fixtures/Subscription.csv ' );
390
390
$ this ->applyDatabaseChanges ();
391
391
392
- $ this ->authenticatedJsonRequest ('get ' , '/api/v2/lists/3/countSubscribers ' );
392
+ $ this ->authenticatedJsonRequest ('get ' , '/api/v2/lists/3/countsubscribers ' );
393
393
$ response = $ this ->getResponseContentAsInt ();
394
394
395
395
static ::assertSame (0 , $ response );
@@ -405,7 +405,7 @@ public function getListCountSubscribersWithCurrentSessionKeyForExistingListWithS
405
405
$ this ->getDataSet ()->addTable (static ::SUBSCRIPTION_TABLE_NAME , __DIR__ . '/Fixtures/Subscription.csv ' );
406
406
$ this ->applyDatabaseChanges ();
407
407
408
- $ this ->authenticatedJsonRequest ('get ' , '/api/v2/lists/2/countSubscribers ' );
408
+ $ this ->authenticatedJsonRequest ('get ' , '/api/v2/lists/2/countsubscribers ' );
409
409
$ response = $ this ->getResponseContentAsInt ();
410
410
411
411
static ::assertSame (1 , $ response );
0 commit comments