Build/Test: Add an intentionally failing test.

To ensure that Travis is sending messages to Slack, a test needs to fail, so here's a failing test.

This failing test (and no other failing tests) will be reverted once Travis confirms that it isn't failing to message Slack about failing tests.

See #40712.



git-svn-id: https://develop.svn.wordpress.org/trunk@40613 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Gary Pendergast 2017-05-10 23:36:18 +00:00
parent 9d2d5b536d
commit a301163c46
1 changed files with 7 additions and 0 deletions

View File

@ -175,4 +175,11 @@ EOF;
return $return;
}
/**
* @ticket 40712
*/
function test_failing_test_notifies_slack() {
$this->assertTrue( false );
}
}