Fix unit test

Regression introduced with https://github.com/owncloud/core/pull/11615
This commit is contained in:
Lukas Reschke 2014-10-16 15:41:45 +02:00
parent d977938a05
commit 8502354382

View file

@ -169,8 +169,8 @@ class MailSettingscontrollerTest extends \PHPUnit_Framework_TestCase {
'A problem occurred while sending the e-mail. Please revisit your settings.'),
array('Email sent', array(), 'Email sent'),
array('test email settings', array(), 'test email settings'),
array('If you received this email, the settings seems to be correct.', array(),
'If you received this email, the settings seems to be correct.')
array('If you received this email, the settings seem to be correct.', array(),
'If you received this email, the settings seem to be correct.')
)
));
$this->container['UserSession']
@ -193,4 +193,4 @@ class MailSettingscontrollerTest extends \PHPUnit_Framework_TestCase {
$this->assertSame($expectedResponse, $response);
}
}
}