Skip to content

Commit 237defe

Browse files
committed
[tests] fixing loop
1 parent 029879b commit 237defe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/2.api/00.read.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ describe('Reading config with ENV extensions', function(){
6767
}
6868
];
6969
it('should extend properly', function(done){
70-
for (var index in testCases) {
70+
for (var index = 0; index < testCases.length; index++) {
7171
var testCase = testCases[index];
7272
process.env[testCase.env] = testCase.val;
7373
// copy config

0 commit comments

Comments
 (0)