1
0
Fork 0
mirror of synced 2024-07-06 15:11:21 +12:00

fix format

This commit is contained in:
Damodar Lohani 2023-01-09 09:18:13 +00:00
parent 5088c9ea99
commit 34b2280207
2 changed files with 2 additions and 2 deletions

View file

@ -462,7 +462,7 @@ App::post('/v1/teams/:teamId/memberships')
$url = Template::parseURL($url);
$url['query'] = Template::mergeQuery(((isset($url['query'])) ? $url['query'] : ''), ['membershipId' => $membership->getId(), 'userId' => $invitee->getId(), 'secret' => $secret, 'teamId' => $teamId]);
$url = Template::unParseURL($url);
// No need of confirmation when in admin or app mode
if (!empty($email)) {
$mails

View file

@ -278,7 +278,7 @@ trait TeamsBaseClient
$this->assertEquals($secondEmail, $lastEmail['to'][0]['address']);
$this->assertEquals($secondName, $lastEmail['to'][0]['name']);
$this->assertEquals('Invitation to ' . $teamName . ' Team at ' . $this->getProject()['name'], $lastEmail['subject']);
/**
* Test for FAILURE
*/