Skip to content

Commit 0a7f94d

Browse files
committed
style: fix eslint
1 parent 8c53f7f commit 0a7f94d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const should = require('chai').should(); // eslint-disable-line
44

55
describe('Front-matter', () => {
6-
const yfm = require('..');
6+
const yfm = require('../lib/front_matter.ts');
77

88
describe('split', () => {
99
it('not string', () => {
@@ -488,11 +488,11 @@ describe('Front-matter', () => {
488488

489489
yfm.stringify(data).should.eql([
490490
'layout: post',
491-
`created: 1995-12-17 03:24:00`,
491+
'created: 1995-12-17 03:24:00',
492492
'blank:',
493493
'---',
494494
'123'
495495
].join('\n'));
496-
})
496+
});
497497
});
498498
});

0 commit comments

Comments
 (0)