From 95112ee26646f451a582fac2b907a775f4d82b63 Mon Sep 17 00:00:00 2001 From: Michael Barz Date: Mon, 18 Oct 2021 15:29:43 +0200 Subject: [PATCH] use HTTP::get --- tests/acceptance/features/bootstrap/GraphApiContext.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/acceptance/features/bootstrap/GraphApiContext.php b/tests/acceptance/features/bootstrap/GraphApiContext.php index a5b099aa3a..dcff78a261 100644 --- a/tests/acceptance/features/bootstrap/GraphApiContext.php +++ b/tests/acceptance/features/bootstrap/GraphApiContext.php @@ -88,7 +88,7 @@ class GraphApiContext implements Context { } $fullUrl .= "graph/v1.0/me/drives/" . $arguments; - return HttpRequestHelper::sendRequest($fullUrl, $xRequestId, 'GET', $user, $password, $headers, $body); + return HttpRequestHelper::get($fullUrl, $xRequestId, $user, $password, $headers, $body); } /**