Skip to content

Commit

Permalink
Fix jsHint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lilleyse committed Aug 25, 2016
1 parent 2806d11 commit e2451ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Specs/Scene/Cesium3DTileBatchTableSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ defineSuite([
};
var batchTableBinary = new Float64Array([0, 1]);
expect(function() {
var batchTable = new Cesium3DTileBatchTable(mockContent, 2, batchTableJson, batchTableBinary);
return new Cesium3DTileBatchTable(mockContent, 2, batchTableJson, batchTableBinary);
}).toThrowDeveloperError();
});

Expand All @@ -375,7 +375,7 @@ defineSuite([
};
var batchTableBinary = new Float64Array([0, 1]);
expect(function() {
var batchTable = new Cesium3DTileBatchTable(mockContent, 2, batchTableJson, batchTableBinary);
return new Cesium3DTileBatchTable(mockContent, 2, batchTableJson, batchTableBinary);
}).toThrowDeveloperError();
});

Expand All @@ -388,7 +388,7 @@ defineSuite([
}
};
expect(function() {
var batchTable = new Cesium3DTileBatchTable(mockContent, 2, batchTableJson);
return new Cesium3DTileBatchTable(mockContent, 2, batchTableJson);
}).toThrowDeveloperError();
});

Expand Down

0 comments on commit e2451ee

Please sign in to comment.