From b3277de5aef7b637eb189f43caab70542ef22be8 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sat, 15 Apr 2017 04:34:27 -0400 Subject: [PATCH] Update tests after citeproc-js upgrade to match output --- test/tests/fileInterfaceTest.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/tests/fileInterfaceTest.js b/test/tests/fileInterfaceTest.js index e364a2af88..31ea3f0223 100644 --- a/test/tests/fileInterfaceTest.js +++ b/test/tests/fileInterfaceTest.js @@ -129,11 +129,11 @@ describe("Zotero_File_Interface", function() { // HTML var str = getDataForFlavor('text/html'); - assert.equal(str, '(A, 2016, B, 2016)'); + assert.equal(str, '(A, 2016; B, 2016)'); // Plain text str = getDataForFlavor('text/unicode'); - assert.equal(str, '(A, 2016, B, 2016)'); + assert.equal(str, '(A, 2016; B, 2016)'); }); it("should copy HTML and text bibliography to the clipboard", function* () { @@ -166,11 +166,11 @@ describe("Zotero_File_Interface", function() { ); var str = getDataForFlavor('text/html'); - assert.equal(str, '(A, 2016, B, 2016)'); + assert.equal(str, '(A, 2016; B, 2016)'); // Plain text str = getDataForFlavor('text/unicode'); - assert.equal(str, '(A, 2016, B, 2016)'); + assert.equal(str, '(A, 2016; B, 2016)'); }); it("should copy HTML and HTML source bibliography to the clipboard", function* () {