Skip to content

Commit

Permalink
Add semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Mar 7, 2019
1 parent ae44f6d commit 77a7102
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/tests/es.regexp.constructor.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ if (DESCRIPTORS) {
QUnit.test('RegExp sticky', assert => {
const re = new RegExp('a', 'y');
assert.ok(re.sticky, '.sticky is true');
assert.strictEqual(re.flags, 'y', '.flags contains y')
})
assert.strictEqual(re.flags, 'y', '.flags contains y');
});
}

0 comments on commit 77a7102

Please sign in to comment.