Skip to content

Commit

Permalink
Merge 4afc158 into 2ad0a52
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Feb 26, 2021
2 parents 2ad0a52 + 4afc158 commit 92953fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion example.js
Expand Up @@ -5,7 +5,7 @@ var SVGSpriter = require('./lib/svg-sprite'),
glob = require('glob'),
cwd = path.join(__dirname, 'test', 'fixture', 'svg', 'single'),
dest = path.normalize(path.join(__dirname, 'tmp')),
files = glob.glob.sync('**/weather*.svg', { cwd: cwd });
files = glob.sync('**/weather*.svg', { cwd: cwd });
spriter = new SVGSpriter({
dest: dest,
log: 'debug'
Expand Down
4 changes: 2 additions & 2 deletions test/svg-sprite.js
Expand Up @@ -161,8 +161,8 @@ before(function (done) {
});

describe('svg-sprite', function () {
var weather = glob.glob.sync('**/weather*.svg', { cwd: cwdWeather }),
align = glob.glob.sync('**/*.svg', { cwd: cwdAlign }),
var weather = glob.sync('**/weather*.svg', { cwd: cwdWeather }),
align = glob.sync('**/*.svg', { cwd: cwdAlign }),
previewTemplate = fs.readFileSync(path.join(__dirname, 'tmpl', 'css.html'), 'utf-8');

describe('with no arguments', function () {
Expand Down

0 comments on commit 92953fb

Please sign in to comment.