From 0ce6deedbe5eda4cb902db936d7bf9c374df771a Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Fri, 9 Sep 2022 21:47:24 +0000 Subject: [PATCH] fix failing test --- tests/e2e/General/UsageTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/General/UsageTest.php b/tests/e2e/General/UsageTest.php index 366852d593..c98742251e 100644 --- a/tests/e2e/General/UsageTest.php +++ b/tests/e2e/General/UsageTest.php @@ -524,7 +524,7 @@ class UsageTest extends Scope } elseif ($execution['body']['status'] == 'completed') { $executions++; } - $executionTime += (int) ($execution['body']['time'] * 1000); + $executionTime += (int) ($execution['body']['duration'] * 1000); sleep(25);