Map<String, String> locations2 = new HashMap<String, String>();
locations.put("remote", "remoteURL2");
locations.put("local", "localPath2");
return newArrayList(
new BundleStorageUnit("default", new HashSet<AssetStorageUnit>()),
new BundleStorageUnit("fake", newLinkedHashSet(new AssetStorageUnit("name", "version", AssetType.js, locations), new AssetStorageUnit("name2", "version2", AssetType.js, locations2))));
}