Skip to content

Commit

Permalink
Make jshint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
ichernev committed Mar 25, 2015
1 parent 95338f9 commit 165d3b8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ module.exports = function (grunt) {
watch : {
test : {
files : [
'src/**/*.js',
'src/**/*.js'
],
tasks: ['test']
},
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"es6-promise": "latest",
"grunt": "latest",
"benchmark": "latest",
"esperanto": "latest",
"grunt-contrib-clean": "latest",
"grunt-contrib-concat": "latest",
"grunt-contrib-copy": "latest",
Expand Down
4 changes: 2 additions & 2 deletions src/test/locale/zh-cn.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ test('calendar next week', function (assert) {
}
assert.equal(m.calendar(), m.format('[下]ddd凌晨12点整'), 'Today + ' + i + ' days beginning of day');
}
assert.equal(42, 42, "at least one assert");
assert.equal(42, 42, 'at least one assert');
});

test('calendar last week', function (assert) {
Expand All @@ -170,7 +170,7 @@ test('calendar last week', function (assert) {
}
assert.equal(m.calendar(), m.format('[上]ddd凌晨12点整'), 'Monday - ' + i + ' days next week');
}
assert.equal(42, 42, "at least one assert");
assert.equal(42, 42, 'at least one assert');
});

test('calendar all else', function (assert) {
Expand Down
2 changes: 1 addition & 1 deletion src/test/moment/diff.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ test('diff month', function (assert) {
test('diff across DST', function (assert) {
var dst = dstForYear(2012), a, b, daysInMonth;
if (!dst) {
assert.equal(42, 42, "at least one assertion");
assert.equal(42, 42, 'at least one assertion');
return;
}

Expand Down

0 comments on commit 165d3b8

Please sign in to comment.