Skip lostcontroller sending email test on windows
This commit is contained in:
parent
154628daf4
commit
9cfae2ed44
|
@ -102,6 +102,11 @@ class LostControllerTest extends \PHPUnit_Framework_TestCase {
|
|||
}
|
||||
|
||||
public function testEmailSuccessful() {
|
||||
if (\OC_Util::runningOnWindows()) {
|
||||
// FIXME after OC_Mail refactor
|
||||
$this->markTestSkipped('[Windows] sendmail is not supported on windows');
|
||||
}
|
||||
|
||||
$randomToken = $this->container['SecureRandom'];
|
||||
$this->container['SecureRandom']
|
||||
->expects($this->once())
|
||||
|
|
Loading…
Reference in New Issue