From 3f35fdcb1ea01675a88ddde2d00e5d5dda7efc2c Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Thu, 10 Dec 2020 09:28:57 +0200 Subject: [PATCH] Updated debug --- tests/e2e/Services/Functions/FunctionsCustomServerTest.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/e2e/Services/Functions/FunctionsCustomServerTest.php b/tests/e2e/Services/Functions/FunctionsCustomServerTest.php index 6e5ddcce17..81e9499fb8 100644 --- a/tests/e2e/Services/Functions/FunctionsCustomServerTest.php +++ b/tests/e2e/Services/Functions/FunctionsCustomServerTest.php @@ -551,10 +551,8 @@ class FunctionsCustomServerTest extends Scope $stdout = explode("\n", $executions['body']['executions'][0]['stdout']); - if($executions['body']['executions'][0]['status'] === 'failed') { - var_dump($executions['body']['executions'][0]['stdout']); - var_dump($executions['body']['executions'][0]['stderr']); - } + var_dump($executions['body']['executions'][0]['stdout']); + var_dump($executions['body']['executions'][0]['stderr']); $this->assertEquals($stdout[0], $functionId); $this->assertEquals($stdout[1], 'Test '.$name);