Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tomap committed Jul 9, 2019
1 parent 17cd99a commit 85652d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ describe('Feed generator', function() {
};

var domain = 'http://example.com/';

var checkURL = function(root, valid) {
hexo.config.url = domain;
hexo.config.root = root;
Expand All @@ -206,7 +206,7 @@ describe('Feed generator', function() {
};
checkURL('/', '/' + file);

checkURL('blo g/', "blo%20g/" + file);
checkURL('blo g/', 'blo%20g/' + file);
});

it('Prints an enclosure on `image` metadata', function() {
Expand Down

0 comments on commit 85652d9

Please sign in to comment.