fix: Skip individual board caches when listing all boards

Signed-off-by: Julius Knorr <jus@bitgrid.net>
This commit is contained in:
Julius Knorr
2025-01-02 18:10:36 +01:00
parent 75be929077
commit 047fcb6584
5 changed files with 10 additions and 13 deletions

View File

@@ -172,7 +172,7 @@ class RequestContext implements Context {
*/
public function theResponseShouldBeAListOfObjects() {
$jsonResponse = $this->getResponseBodyFromJson();
Assert::assertEquals(array_keys($jsonResponse), range(0, count($jsonResponse) - 1));
Assert::assertEquals(range(0, count($jsonResponse) - 1), array_keys($jsonResponse));
}
/**