Remove var_dump

This commit is contained in:
Khushboo Verma
2025-07-21 12:49:21 +05:30
parent 81cbd76ccc
commit e80667f3cf
2 changed files with 0 additions and 4 deletions
@@ -278,7 +278,6 @@ class Create extends Base
if ($async) {
if (is_null($scheduledAt)) {
$execution = Authorization::skip(fn () => $dbForProject->createDocument('executions', $execution));
$queueForFunctions
->setType('http')
->setExecution($execution)
@@ -1576,9 +1576,6 @@ class FunctionsCustomServerTest extends Scope
$this->assertStringContainsString("total", $execution['body']['logs']);
}, 10000, 500);
$execution = $this->getExecution($functionId, $executionId);
var_dump($execution);
$this->cleanupFunction($functionId);
}