Added missing classname

Change-Id: Iacff23076964752ca522e9630457d1ea418ab09e
This commit is contained in:
Sebastian Marcet 2017-02-03 13:32:51 -03:00
parent e79867846d
commit cecb957176
2 changed files with 7 additions and 1 deletions

View File

@ -23,6 +23,12 @@ use models\main\File;
*/
class SummitEventWithFile extends SummitEvent
{
/**
* @return string
*/
public function getClassName(){
return "SummitEventWithFile";
}
/**
* @ORM\ManyToOne(targetEntity="models\main\File")

View File

@ -95,7 +95,7 @@ final class OAuth2SummitApiTest extends ProtectedApiTest
$params = array
(
'expand' => 'schedule,speakers',
'id' => 7
'id' => 22
);
$headers = array("HTTP_Authorization" => " Bearer " . $this->access_token);