mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-26 00:32:41 +01:00
Remove debugging output from xUnit.NET test engine
Summary: This just removes the `print "Discovered test .."` code in the xUnit.NET unit test engine. If users need to diagnose what tests are being debugged, it can be found out with `--trace` and observing what build commands are invoked. Test Plan: Ran `arc unit --everything` and didn't see the message any more. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley CC: Korvin, epriestley, aran Differential Revision: https://secure.phabricator.com/D7639
This commit is contained in:
parent
bd191c2860
commit
799841a0d8
1 changed files with 0 additions and 1 deletions
|
@ -135,7 +135,6 @@ class XUnitTestEngine extends ArcanistBaseUnitTestEngine {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$exists) {
|
if (!$exists) {
|
||||||
print "Discovered test at ".$assembly."\n";
|
|
||||||
$results[] = array(
|
$results[] = array(
|
||||||
'project' => $project,
|
'project' => $project,
|
||||||
'assembly' => $assembly);
|
'assembly' => $assembly);
|
||||||
|
|
Loading…
Reference in a new issue