summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/page.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/page.js b/test/page.js
index 8eb2096..37acc95 100644
--- a/test/page.js
+++ b/test/page.js
@@ -289,7 +289,8 @@ describe('Page', function() {
var page = book.addPage('variables/file/mtime.md');
return page.toHTML(output)
.then(function(content) {
- content.should.endWith('(CET)</p>\n');
+ // A date ends with "(CET)" or "(UTC)""
+ content.should.endWith(')</p>\n');
});
});