Skip to content

Commit cf00ec7

Browse files
committed
Add missing semicolons
1 parent 19fbb10 commit cf00ec7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/utils/__tests__/Path-test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ describe('Path.extractParams', function () {
6060
});
6161

6262
describe('and the pattern is optional', function () {
63-
var pattern = 'comments/:id?/edit'
63+
var pattern = 'comments/:id?/edit';
6464

6565
describe('and the path matches with supplied param', function () {
6666
it('returns an object with the params', function () {
@@ -76,7 +76,7 @@ describe('Path.extractParams', function () {
7676
});
7777

7878
describe('and the pattern and forward slash are optional', function () {
79-
var pattern = 'comments/:id?/?edit'
79+
var pattern = 'comments/:id?/?edit';
8080

8181
describe('and the path matches with supplied param', function () {
8282
it('returns an object with the params', function () {
@@ -205,7 +205,7 @@ describe('Path.injectParams', function () {
205205
describe('and a param is missing', function () {
206206
it('throws an Error', function () {
207207
expect(function () {
208-
Path.injectParams(pattern, {})
208+
Path.injectParams(pattern, {});
209209
}).toThrow(Error);
210210
});
211211
});

0 commit comments

Comments
 (0)