From 33462c26c2634c5c3b81add44100b65ac7bf4e2d Mon Sep 17 00:00:00 2001 From: SukkaW Date: Sun, 27 Oct 2019 20:46:14 +0800 Subject: [PATCH] test(open_graph): missing update for #3805 --- test/scripts/helpers/open_graph.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/scripts/helpers/open_graph.js b/test/scripts/helpers/open_graph.js index 6f85fa55ab..9c9d15ef0b 100644 --- a/test/scripts/helpers/open_graph.js +++ b/test/scripts/helpers/open_graph.js @@ -39,7 +39,8 @@ describe('open_graph', () => { meta({property: 'article:published_time', content: post.date.toISOString()}), meta({property: 'article:modified_time', content: post.updated.toISOString()}), meta({property: 'article:author', content: hexo.config.author}), - meta({property: 'article:tag', content: 'optimize,web'}), + meta({property: 'article:tag', content: 'optimize'}), + meta({property: 'article:tag', content: 'web'}), meta({name: 'twitter:card', content: 'summary'}) ].join('\n'));