Skip to content

Commit fec34f4

Browse files
committed
Missing semicolon fixed.
1 parent cacf34f commit fec34f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/specs/fields/fieldSelect.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ describe("fieldSelect.vue", function () {
178178
});
179179

180180
it("should contain option elements in optgroup", () => {
181-
let og = input.getElementsByTagName("optgroup")[0]
181+
let og = input.getElementsByTagName("optgroup")[0];
182182
let options = og.querySelectorAll("option");
183183

184184
expect(options.length).to.be.equal(2);

0 commit comments

Comments
 (0)