From bff58fac934ff3e03d252e630025bfcbf9cdef86 Mon Sep 17 00:00:00 2001 From: Joshua Spence Date: Mon, 16 Jun 2014 05:52:11 +1000 Subject: [PATCH] Move infrastructure tests up one directory. Summary: Sometimes, the `PhabricatorInfrastructureTestCase` //would// fail, but we don't run it with `arc unit` because of the directory structure. See D9556 for an example. Test Plan: This is essentially the same as D9557. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D9559 --- src/__phutil_library_map__.php | 2 +- .../__tests__/PhabricatorInfrastructureTestCase.php | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{infrastructure => }/__tests__/PhabricatorInfrastructureTestCase.php (100%) diff --git a/src/__phutil_library_map__.php b/src/__phutil_library_map__.php index 39284871e4..c0d1187b0e 100644 --- a/src/__phutil_library_map__.php +++ b/src/__phutil_library_map__.php @@ -1676,7 +1676,7 @@ phutil_register_library_map(array( 'PhabricatorHunksManagementWorkflow' => 'applications/differential/management/PhabricatorHunksManagementWorkflow.php', 'PhabricatorIRCProtocolAdapter' => 'infrastructure/daemon/bot/adapter/PhabricatorIRCProtocolAdapter.php', 'PhabricatorImageTransformer' => 'applications/files/PhabricatorImageTransformer.php', - 'PhabricatorInfrastructureTestCase' => 'infrastructure/__tests__/PhabricatorInfrastructureTestCase.php', + 'PhabricatorInfrastructureTestCase' => '__tests__/PhabricatorInfrastructureTestCase.php', 'PhabricatorInlineCommentController' => 'infrastructure/diff/PhabricatorInlineCommentController.php', 'PhabricatorInlineCommentInterface' => 'infrastructure/diff/interface/PhabricatorInlineCommentInterface.php', 'PhabricatorInlineCommentPreviewController' => 'infrastructure/diff/PhabricatorInlineCommentPreviewController.php', diff --git a/src/infrastructure/__tests__/PhabricatorInfrastructureTestCase.php b/src/__tests__/PhabricatorInfrastructureTestCase.php similarity index 100% rename from src/infrastructure/__tests__/PhabricatorInfrastructureTestCase.php rename to src/__tests__/PhabricatorInfrastructureTestCase.php