diff --git a/src/__tests__/PhutilInfrastructureTestCase.php b/src/__tests__/PhutilInfrastructureTestCase.php index bf03ebf..c305416 100644 --- a/src/__tests__/PhutilInfrastructureTestCase.php +++ b/src/__tests__/PhutilInfrastructureTestCase.php @@ -1,38 +1,39 @@ selectAndLoadSymbols(); $this->assertTrue(true); } /** * This is more of an acceptance test case instead of a unit test. It verifies * that all the library map is up-to-date. */ public function testLibraryMap() { - $root = phutil_get_library_root('phutil'); + $library = phutil_get_current_library_name(); + $root = phutil_get_library_root($library); $new_library_map = id(new PhutilLibraryMapBuilder($root)) ->setQuiet(true) ->setDryRun(true) ->buildMap(); $bootloader = PhutilBootloader::getInstance(); - $old_library_map = $bootloader->getLibraryMapWithoutExtensions('phutil'); + $old_library_map = $bootloader->getLibraryMapWithoutExtensions($library); unset($old_library_map[PhutilLibraryMapBuilder::LIBRARY_MAP_VERSION_KEY]); $this->assertEqual( $new_library_map, $old_library_map, 'The library map does not appear to be up-to-date. Try '. 'rebuilding the map with `arc liberate`.'); } }