Commit b4421c0df4b769ab48bff7a7d2f500b719b0a7eb
1 parent
246f026b
Exists in
master
and in
26 other branches
Fix warning in body states classes service
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/app/layout/services/body-state-classes.service.spec.ts
... | ... | @@ -152,7 +152,7 @@ describe("BodyStateClasses Service", () => { |
152 | 152 | it("add a css class to content wrapper element", () => { |
153 | 153 | let service = getService(); |
154 | 154 | |
155 | - let contentWrapperMock = jasmine.createSpyObj("contentWrapperMock", ["addClass", "removeClass"]) | |
155 | + let contentWrapperMock = jasmine.createSpyObj("contentWrapperMock", ["addClass", "removeClass"]); | |
156 | 156 | service["getContentWrapper"] = jasmine.createSpy("getContentWrapper").and.returnValue(contentWrapperMock); |
157 | 157 | service.addContentClass(true); |
158 | 158 | |
... | ... | @@ -162,7 +162,7 @@ describe("BodyStateClasses Service", () => { |
162 | 162 | it("remove a css class from content wrapper element", () => { |
163 | 163 | let service = getService(); |
164 | 164 | |
165 | - let contentWrapperMock = jasmine.createSpyObj("contentWrapperMock", ["addClass", "removeClass"]) | |
165 | + let contentWrapperMock = jasmine.createSpyObj("contentWrapperMock", ["addClass", "removeClass"]); | |
166 | 166 | service["getContentWrapper"] = jasmine.createSpy("getContentWrapper").and.returnValue(contentWrapperMock); |
167 | 167 | service.addContentClass(false); |
168 | 168 | ... | ... |