summaryrefslogtreecommitdiffstats
path: root/build/integration/features/bootstrap/CommandLine.php
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2018-02-09 13:19:39 +0100
committerRobin Appelman <robin@icewind.nl>2018-02-09 17:13:30 +0100
commit359ccbc023ce134c828a620fb6f7e70e886e5e44 (patch)
treec801d4ab01cbe61f0fee3f327ff564e83e783413 /build/integration/features/bootstrap/CommandLine.php
parent97b44605f4d38a1742cf95204ed6b5e9ca0d6951 (diff)
downloadnextcloud-server-359ccbc023ce134c828a620fb6f7e70e886e5e44.tar.gz
nextcloud-server-359ccbc023ce134c828a620fb6f7e70e886e5e44.zip
Adjust integration tests to new guzzle
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'build/integration/features/bootstrap/CommandLine.php')
-rw-r--r--build/integration/features/bootstrap/CommandLine.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/build/integration/features/bootstrap/CommandLine.php b/build/integration/features/bootstrap/CommandLine.php
index 2c717e7f5ed..c6fd232ac9c 100644
--- a/build/integration/features/bootstrap/CommandLine.php
+++ b/build/integration/features/bootstrap/CommandLine.php
@@ -59,8 +59,7 @@ trait CommandLine {
// Clean opcode cache
$client = new GuzzleHttp\Client();
- $request = $client->createRequest('GET', 'http://localhost:8080/apps/testing/clean_opcode_cache.php');
- $client->send($request);
+ $client->request('GET', 'http://localhost:8080/apps/testing/clean_opcode_cache.php');
return $this->lastCode;
}