From c7a97a16dfe8ec59bb80f6c4fd8896330c5b6272 Mon Sep 17 00:00:00 2001 From: Damodar Lohani Date: Tue, 8 Apr 2025 09:08:04 +0000 Subject: [PATCH] fix test --- tests/e2e/Services/Functions/FunctionsConsoleClientTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/Services/Functions/FunctionsConsoleClientTest.php b/tests/e2e/Services/Functions/FunctionsConsoleClientTest.php index 5e2310f2d7..24215f5352 100644 --- a/tests/e2e/Services/Functions/FunctionsConsoleClientTest.php +++ b/tests/e2e/Services/Functions/FunctionsConsoleClientTest.php @@ -62,7 +62,7 @@ class FunctionsConsoleClientTest extends Scope 'range' => '24h' ]); $this->assertEquals(200, $usage['headers']['status-code']); - $this->assertEquals(19, count($usage['body'])); + $this->assertEquals(24, count($usage['body'])); $this->assertEquals('24h', $usage['body']['range']); $this->assertIsNumeric($usage['body']['deploymentsTotal']); $this->assertIsNumeric($usage['body']['deploymentsStorageTotal']);