1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-22 23:02:42 +01:00

Fix method visibility for PhabricatorTrivialTestCase::willRunOneTest

Summary: Ref T6822.

Test Plan: `grep` for `->willRunOneTest(`.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

Maniphest Tasks: T6822

Differential Revision: https://secure.phabricator.com/D11365
This commit is contained in:
Joshua Spence 2015-01-14 07:02:28 +11:00
parent 36b760cd8a
commit b9646f31e9

View file

@ -9,7 +9,7 @@ final class PhabricatorTrivialTestCase extends PhabricatorTestCase {
private $two; private $two;
public function willRunOneTest($test_name) { protected function willRunOneTest($test_name) {
// You can execute setup steps which will run before each test in this // You can execute setup steps which will run before each test in this
// method. // method.
$this->two = 2; $this->two = 2;