Added new API calls for project attachements

This commit is contained in:
Frederic Guillot
2016-06-26 15:17:38 -04:00
parent 3d34681610
commit f621129836
12 changed files with 370 additions and 11 deletions

View File

@@ -21,7 +21,7 @@ class TaskFileProcedureTest extends BaseProcedureTest
public function assertCreateTaskFile()
{
$this->fileId = $this->app->createTaskFile(1, $this->taskId, 'My file', base64_encode('plain text file'));
$this->fileId = $this->app->createTaskFile($this->projectId, $this->taskId, 'My file', base64_encode('plain text file'));
$this->assertNotFalse($this->fileId);
}