From 4878562f670d1a5bd26f56ed7e92ee724f7a1aa2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Behrendt?= Date: Tue, 16 Apr 2024 16:58:36 +0200 Subject: [PATCH] Fix php tests --- clients/php/test/Api/UploadsApiTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/php/test/Api/UploadsApiTest.php b/clients/php/test/Api/UploadsApiTest.php index 3a4b89f41..779eb02d2 100644 --- a/clients/php/test/Api/UploadsApiTest.php +++ b/clients/php/test/Api/UploadsApiTest.php @@ -107,7 +107,7 @@ public function testUploadCreate() $file = new \SplFileObject($fileName, 'w+'); $file->fwrite('test'); - $result = $this->apiInstance->uploadCreate($projectId, null, null, $file); + $result = $this->apiInstance->uploadCreate($projectId, $file, null, null); $file = null; unlink($fileName);