mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-12-23 05:50:54 +01:00
Call $linter->setEngine
in linter tests
Summary: We aren't calling `$linter->setEngine($engine)`, even though we do have an `$engine`. This causes unit tests for any linters which require an engine to fail. Test Plan: Ran the unit tests for a [[https://github.com/freelancer/flarc/blob/master/src/lint/linter/ArcanistDockerContainerLinterProxy.php | third-party linter]]. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D20515
This commit is contained in:
parent
9ccbbee336
commit
4f583dded3
1 changed files with 1 additions and 0 deletions
|
@ -114,6 +114,7 @@ abstract class ArcanistLinterTestCase extends PhutilTestCase {
|
|||
$path_name = idx($config, 'path', $path);
|
||||
$engine->setPaths(array($path_name));
|
||||
|
||||
$linter->setEngine($engine);
|
||||
$linter->addPath($path_name);
|
||||
$linter->addData($path_name, $data);
|
||||
|
||||
|
|
Loading…
Reference in a new issue