1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-22 14:52:40 +01:00

Minor change to ArcanistInfrastructureTestCase::testLibraryMap

Summary: Modify `ArcanistInfrastructureTestCase::testLibraryMap` to use `phutil_get_current_library_name()` instead of hard-coding the library name.

Test Plan: See D9844.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: epriestley, Korvin

Differential Revision: https://secure.phabricator.com/D9846
This commit is contained in:
Joshua Spence 2014-07-06 23:50:30 +10:00
parent ac73fb8cbd
commit 32623f84c7

View file

@ -17,7 +17,8 @@ final class ArcanistInfrastructureTestCase extends ArcanistTestCase {
* that all the library map is up-to-date. * that all the library map is up-to-date.
*/ */
public function testLibraryMap() { public function testLibraryMap() {
$root = phutil_get_library_root('arcanist'); $library = phutil_get_current_library_name();
$root = phutil_get_library_root($library);
$new_library_map = id(new PhutilLibraryMapBuilder($root)) $new_library_map = id(new PhutilLibraryMapBuilder($root))
->setQuiet(true) ->setQuiet(true)
@ -25,7 +26,7 @@ final class ArcanistInfrastructureTestCase extends ArcanistTestCase {
->buildMap(); ->buildMap();
$bootloader = PhutilBootloader::getInstance(); $bootloader = PhutilBootloader::getInstance();
$old_library_map = $bootloader->getLibraryMapWithoutExtensions('arcanist'); $old_library_map = $bootloader->getLibraryMapWithoutExtensions($library);
unset($old_library_map[PhutilLibraryMapBuilder::LIBRARY_MAP_VERSION_KEY]); unset($old_library_map[PhutilLibraryMapBuilder::LIBRARY_MAP_VERSION_KEY]);
$this->assertEqual( $this->assertEqual(
@ -34,4 +35,5 @@ final class ArcanistInfrastructureTestCase extends ArcanistTestCase {
'The library map does not appear to be up-to-date. Try '. 'The library map does not appear to be up-to-date. Try '.
'rebuilding the map with `arc liberate`.'); 'rebuilding the map with `arc liberate`.');
} }
} }