Temporarily ignore collection-title for podcast in itemFromCSLJSON test

See #1667
This commit is contained in:
Dan Stillman 2019-03-21 02:21:22 -04:00
parent 8f1f1f1fba
commit 49226edd07

View file

@ -400,6 +400,11 @@ describe("Zotero.Utilities", function() {
for (let i in data) {
let json = data[i];
// TEMP: https://github.com/zotero/zotero/issues/1667
if (i == 'podcast') {
delete json['collection-title'];
}
let item = new Zotero.Item();
Zotero.Utilities.itemFromCSLJSON(item, json);
yield item.saveTx();