Skip to content
Snippets Groups Projects
Commit 7c96cedd authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #12489 from owncloud/skip-sendpassword-email-test-windows

Skip lostcontroller sending email test on windows
parents 154628da 9cfae2ed
Branches
No related tags found
No related merge requests found
......@@ -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())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment