Temporarily ignore collection-title for podcast in itemFromCSLJSON test
See #1667
This commit is contained in:
parent
8f1f1f1fba
commit
49226edd07
1 changed files with 5 additions and 0 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue