From 5c26ea730f0cb1691e9d3dbc17df1887b5dbeaff Mon Sep 17 00:00:00 2001 From: Charles Barnes Date: Wed, 18 Dec 2019 06:25:26 -0600 Subject: [PATCH] fix lint --- src/app/privacy-policy/privacy-policy.component.spec.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/app/privacy-policy/privacy-policy.component.spec.ts b/src/app/privacy-policy/privacy-policy.component.spec.ts index 0ebb478..a5ecfa9 100644 --- a/src/app/privacy-policy/privacy-policy.component.spec.ts +++ b/src/app/privacy-policy/privacy-policy.component.spec.ts @@ -1,8 +1,5 @@ /* tslint:disable:no-unused-variable */ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { By } from '@angular/platform-browser'; -import { DebugElement } from '@angular/core'; - import { PrivacyPolicyComponent } from './privacy-policy.component'; describe('PrivacyPolicyComponent', () => { @@ -11,7 +8,7 @@ describe('PrivacyPolicyComponent', () => { beforeEach(async(() => { TestBed.configureTestingModule({ - declarations: [ PrivacyPolicyComponent ] + declarations: [ PrivacyPolicyComponent ], }) .compileComponents(); }));