Skip to content

Commit f3c202a

Browse files
committed
fix lint issues
1 parent de26d0b commit f3c202a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/DocMeasure.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ describe('DocMeasure', function () {
462462
var imageNode = {
463463
image: '...',
464464
width: 'auto',
465-
}
465+
};
466466
docMeasure.measureImageWithDimensions(imageNode, { width: 42, height: 42 });
467467

468468
assert.equal(imageNode._height, 42);
@@ -473,7 +473,7 @@ describe('DocMeasure', function () {
473473
var imageNode = {
474474
image: '...',
475475
height: 'auto',
476-
}
476+
};
477477
docMeasure.measureImageWithDimensions(imageNode, { width: 42, height: 42 });
478478

479479
assert.equal(imageNode._height, 42);

0 commit comments

Comments
 (0)