Skip to content

Commit e3a1882

Browse files
committed
fix some indents
1 parent c38048f commit e3a1882

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

.jshintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"eqnull": true,
23
"expr": true,
34
"jquery": true,
45
"node": true

test/fixtures/async-test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
test('1', 1, function (){
2-
ok(true, "tests intermixing sync and async tests #1");
2+
ok(true, "tests intermixing sync and async tests #1");
33
});
44

55
test('a', 2, function(){
@@ -13,7 +13,7 @@ test('a', 2, function(){
1313
});
1414

1515
test('2', 1, function (){
16-
ok(true, "tests intermixing sync and async tests #2");
16+
ok(true, "tests intermixing sync and async tests #2");
1717
});
1818

1919
test('b', 2, function(){

test/fixtures/child-code-global.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
exports.whereFrom = function() {
2-
return "I was required as global";
2+
return "I was required as global";
33
};
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
exports.whereFrom = function() {
2-
return "I was required as a namespace object";
3-
};
2+
return "I was required as a namespace object";
3+
};

test/fixtures/child-tests-global.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
test("Dependency file required as global", function() {
32
equal(typeof whereFrom, "function");
43
equal(whereFrom(), "I was required as global");

test/fixtures/coverage-code.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ exports.myMethod = function() {
44

55
exports.myAsyncMethod = function(callback) {
66
setTimeout(function() {
7-
callback(123);
7+
callback(123);
88
}, 10000);
99
};
1010

1111
exports.myOtherMethod = function(callback) {
12-
return 321
12+
return 321;
1313
};

test/fixtures/testrunner-code.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ exports.myAsyncMethod = function(callback) {
66
setTimeout(function() {
77
callback(123);
88
}, 100);
9-
};
9+
};

0 commit comments

Comments
 (0)