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',
somethingElse: 0,
deepObject: {
somthingAsWell: true,
somethingAsWell: true,
somethingNotInJson: undefined,
someArray: [
'hui',
@ -55,7 +55,7 @@ describe('Store Service', function () {
return load(StoreKeys.COOKIES);
})
.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');
});
});