Skip to content

Commit

Permalink
Add missing semicolon.
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Apr 7, 2014
1 parent 76791f4 commit 15954bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test.js
Expand Up @@ -7,7 +7,7 @@ var grunt = require('grunt')
, tasks = ['sed']
, testFilePath = path.join(testDir, 'test.txt')
, input = ['search', '12-21-2012', 'LOWERCASE', 'YY'].join('\n')
, output = ['replace', '12-21-endOfWorld', 'lowercase', 'ZZ'].join('\n')
, output = ['replace', '12-21-endOfWorld', 'lowercase', 'ZZ'].join('\n');

fs.writeFileSync(testFilePath, input);

Expand Down

0 comments on commit 15954bd

Please sign in to comment.