Skip to content

Commit

Permalink
Missing semicolon fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
hansi90 committed Oct 16, 2017
1 parent cacf34f commit fec34f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/specs/fields/fieldSelect.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ describe("fieldSelect.vue", function () {
});

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

expect(options.length).to.be.equal(2);
Expand Down

0 comments on commit fec34f4

Please sign in to comment.