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:
parent
36b760cd8a
commit
b9646f31e9
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ final class PhabricatorTrivialTestCase extends PhabricatorTestCase {
|
|||
|
||||
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
|
||||
// method.
|
||||
$this->two = 2;
|
||||
|
|
Loading…
Reference in a new issue