Bug 650676 - browser_autocompletesearch.js throws getting ProfD (debugging code) [r=vingtetun]

This commit is contained in:
Mark Finkle 2011-04-19 11:21:21 -04:00
Родитель a8dd50e303
Коммит 4cb99328b1
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -45,7 +45,11 @@ function saveMockCache() {
oldCacheFile.remove(true);
let mockCachePath = gTestPath;
let mockCacheFile = getChromeDir(getResolvedURI(mockCachePath));
info("mock path: " + mockCachePath);
let mockCacheURI = getResolvedURI(mockCachePath);
info("mock URI: " + mockCacheURI.spec);
let mockCacheFile = getChromeDir(mockCacheURI);
info("mock file: " + mockCacheFile.path);
mockCacheFile.append("mock_autocomplete.json");
mockCacheFile.copyToFollowingLinks(gProfileDir, "autocomplete.json");