Skip to content

Commit

Permalink
Adjust test result
Browse files Browse the repository at this point in the history
  • Loading branch information
fbennett committed Apr 16, 2018
1 parent d71329d commit 0148fcc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/tests/lookupTest.js
Expand Up @@ -29,15 +29,15 @@ describe("Add Item by Identifier", function() {
this.timeout(20000);
return lookupIdentifier(win, "0838985890").then(function(ids) {
var item = Zotero.Items.get(ids[0]);
assert.equal(item.getField("title"), "Zotero: a guide for librarians, researchers, and educators");
assert.equal(item.getField("title"), "Zotero: a guide for librarians, researchers and educators");
});
});

it("should add an ISBN-13", function() {
this.timeout(20000);
return lookupIdentifier(win, "978-0838985892").then(function(ids) {
var item = Zotero.Items.get(ids[0]);
assert.equal(item.getField("title"), "Zotero: a guide for librarians, researchers, and educators");
assert.equal(item.getField("title"), "Zotero: a guide for librarians, researchers and educators");
});
});

Expand Down

0 comments on commit 0148fcc

Please sign in to comment.