Skip to content

Commit e0739ad

Browse files
committed
Fix accidental tabs -> spaces
1 parent c28f433 commit e0739ad

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/specs.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,9 @@ function specsRunner(specs, reporter, callback, err, data) {
127127
}
128128
if (typeof specs[key] === 'object') {
129129
traverse(specs[key], data[key]);
130-
} else if(typeof specs[key] === 'number' && Array.isArray(data[key])) {
131-
tests.push(buildTest(path.join('.'), specs[key], data[key].length, defaults));
132-
path.pop();
130+
} else if(typeof specs[key] === 'number' && Array.isArray(data[key])) {
131+
tests.push(buildTest(path.join('.'), specs[key], data[key].length, defaults));
132+
path.pop();
133133
} else {
134134
tests.push(buildTest(path.join('.'), specs[key], data[key], defaults));
135135
path.pop();

0 commit comments

Comments
 (0)