Skip to content

Commit

Permalink
fix metadata warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Kachulio1 committed Aug 7, 2019
1 parent 8da1a24 commit 59ef1e4
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
20 changes: 10 additions & 10 deletions src/app/components/Metadata/__snapshots__/index.test.jsx.snap
Expand Up @@ -60,11 +60,11 @@ exports[`Metadata News AMP article should render correctly 1`] = `
name="article:author"
/>
<meta
content="1539188371344"
content={1539188371344}
name="article:modified_time"
/>
<meta
content="1514811600000"
content={1514811600000}
name="article:published_time"
/>
<meta
Expand Down Expand Up @@ -304,11 +304,11 @@ exports[`Metadata News article should render correctly 1`] = `
name="article:author"
/>
<meta
content="1539188371344"
content={1539188371344}
name="article:modified_time"
/>
<meta
content="1514811600000"
content={1514811600000}
name="article:published_time"
/>
<meta
Expand Down Expand Up @@ -530,11 +530,11 @@ exports[`Metadata Persian AMP article should render correctly 1`] = `
name="article:author"
/>
<meta
content="1539188371344"
content={1539188371344}
name="article:modified_time"
/>
<meta
content="1514811600000"
content={1514811600000}
name="article:published_time"
/>
<meta
Expand Down Expand Up @@ -759,11 +759,11 @@ exports[`Metadata Persian article should render correctly 1`] = `
name="article:author"
/>
<meta
content="1539188371344"
content={1539188371344}
name="article:modified_time"
/>
<meta
content="1514811600000"
content={1514811600000}
name="article:published_time"
/>
<meta
Expand Down Expand Up @@ -1451,11 +1451,11 @@ exports[`Metadata articleSection is not null should render correctly 1`] = `
name="article:author"
/>
<meta
content="1539188371344"
content={1539188371344}
name="article:modified_time"
/>
<meta
content="1514811600000"
content={1514811600000}
name="article:published_time"
/>
<meta
Expand Down
28 changes: 14 additions & 14 deletions src/app/components/Metadata/index.test.jsx
Expand Up @@ -115,8 +115,8 @@ describe('Metadata', () => {
'en_GB',
['tagA', 'tagB'],
'#B80000',
'1539188371344',
'1514811600000',
1539188371344,
1514811600000,
'An article title',
'@BBCNews',
'@BBCNews',
Expand Down Expand Up @@ -158,8 +158,8 @@ describe('Metadata', () => {
'en_GB',
['tagA', 'tagB'],
'#B80000',
'1539188371344',
'1514811600000',
1539188371344,
1514811600000,
'An article title',
'@BBCNews',
'@BBCNews',
Expand Down Expand Up @@ -188,8 +188,8 @@ describe('Metadata', () => {
'fa',
['tagA', 'tagB'],
'#B80000',
'1539188371344',
'1514811600000',
1539188371344,
1514811600000,
'پهپادی که برایتان قهوه می‌آورد',
'@bbcpersian',
'@bbcpersian',
Expand Down Expand Up @@ -218,8 +218,8 @@ describe('Metadata', () => {
'fa',
['tagA', 'tagB'],
'#B80000',
'1539188371344',
'1514811600000',
1539188371344,
1514811600000,
'پهپادی که برایتان قهوه می‌آورد',
'@bbcpersian',
'@bbcpersian',
Expand Down Expand Up @@ -261,8 +261,8 @@ describe('Metadata', () => {
'en_GB',
['tagA', 'tagB'],
'#B80000',
'1539188371344',
'1514811600000',
1539188371344,
1514811600000,
'An article title',
'@BBCNews',
'@BBCNews',
Expand Down Expand Up @@ -304,8 +304,8 @@ describe('Metadata', () => {
'pcm',
[],
'#B80000',
'1539188371344',
'1514811600000',
1539188371344,
1514811600000,
'Index title',
'@BBCNews',
'@BBCNews',
Expand Down Expand Up @@ -347,8 +347,8 @@ describe('Metadata', () => {
'pcm',
[],
'#B80000',
'1539188371344',
'1514811600000',
1539188371344,
1514811600000,
'Index title',
'@BBCNews',
'@BBCNews',
Expand Down

0 comments on commit 59ef1e4

Please sign in to comment.