Skip to content

Commit

Permalink
Fix php tests
Browse files Browse the repository at this point in the history
  • Loading branch information
theSoenke committed Apr 16, 2024
1 parent 88ce9af commit 4878562
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/php/test/Api/UploadsApiTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 4878562

Please sign in to comment.