fix: fix typos

This commit is contained in:
Xymorot 2020-04-22 01:12:02 +02:00
parent 60eb8fb9fa
commit 9e5abaeb42
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ describe('Store Service', function () {
something: 'gaga', something: 'gaga',
somethingElse: 0, somethingElse: 0,
deepObject: { deepObject: {
somthingAsWell: true, somethingAsWell: true,
somethingNotInJson: undefined, somethingNotInJson: undefined,
someArray: [ someArray: [
'hui', 'hui',
@ -55,7 +55,7 @@ describe('Store Service', function () {
return load(StoreKeys.COOKIES); return load(StoreKeys.COOKIES);
}) })
.then((data) => { .then((data) => {
expect(JSON.stringify(data)).to.equal(expectedJson, 'store does load data correctly when loaded twice'); expect(JSON.stringify(data)).to.equal(expectedJson, 'store does not load data correctly when loaded twice');
}); });
}); });