Fixing missing semi-colons

This commit is contained in:
sylhare
2018-02-21 09:01:24 -05:00
parent a9a112e88f
commit 7fb53dcdfa
9 changed files with 26 additions and 26 deletions

View File

@@ -32,7 +32,7 @@ describe("UserContext", function() {
describe('when using a regular object as parameter', function() {
beforeEach(function() {
this.context = {};
this.value = 'value'
this.value = 'value';
this.context.key = this.value;
this.cloned = jasmineUnderTest.UserContext.fromExisting(this.context);
});