diff options
author | Robin Appelman <robin@icewind.nl> | 2024-06-19 14:55:05 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2024-06-19 16:57:42 +0200 |
commit | 957a00b9de873ebdc382c86c82d32aff5eedba52 (patch) | |
tree | fb0479719e7e30aa2f7f9b85b4536d6782505f0a /build/integration/features/bootstrap/WebDav.php | |
parent | 441dfd6646ed5491610f4a7d02afda08e2748fc2 (diff) | |
download | nextcloud-server-957a00b9de873ebdc382c86c82d32aff5eedba52.tar.gz nextcloud-server-957a00b9de873ebdc382c86c82d32aff5eedba52.zip |
chore: remove chunking-v1
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'build/integration/features/bootstrap/WebDav.php')
-rw-r--r-- | build/integration/features/bootstrap/WebDav.php | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/build/integration/features/bootstrap/WebDav.php b/build/integration/features/bootstrap/WebDav.php index c2de207284d..852317f76a3 100644 --- a/build/integration/features/bootstrap/WebDav.php +++ b/build/integration/features/bootstrap/WebDav.php @@ -684,21 +684,6 @@ trait WebDav { } /** - * @Given user :user uploads chunk file :num of :total with :data to :destination - * @param string $user - * @param int $num - * @param int $total - * @param string $data - * @param string $destination - */ - public function userUploadsChunkFileOfWithToWithChecksum($user, $num, $total, $data, $destination) { - $num -= 1; - $data = \GuzzleHttp\Psr7\Utils::streamFor($data); - $file = $destination . '-chunking-42-' . $total . '-' . $num; - $this->makeDavRequest($user, 'PUT', $file, ['OC-Chunked' => '1'], $data, "uploads"); - } - - /** * @Given user :user uploads bulked files :name1 with :content1 and :name2 with :content2 and :name3 with :content3 * @param string $user * @param string $name1 |