diff --git a/src/app/clightning/network-info/network-info.component.spec.ts b/src/app/clightning/network-info/network-info.component.spec.ts index b1e1f1e9..5e2349c1 100644 --- a/src/app/clightning/network-info/network-info.component.spec.ts +++ b/src/app/clightning/network-info/network-info.component.spec.ts @@ -1,20 +1,20 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { NetworkInfoComponent } from './network-info.component'; +import { CLNetworkInfoComponent } from './network-info.component'; -describe('NetworkInfoComponent', () => { - let component: NetworkInfoComponent; - let fixture: ComponentFixture; +describe('CLNetworkInfoComponent', () => { + let component: CLNetworkInfoComponent; + let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ - declarations: [ NetworkInfoComponent ] + declarations: [ CLNetworkInfoComponent ] }) .compileComponents(); })); beforeEach(() => { - fixture = TestBed.createComponent(NetworkInfoComponent); + fixture = TestBed.createComponent(CLNetworkInfoComponent); component = fixture.componentInstance; fixture.detectChanges(); }); diff --git a/src/app/eclair/peers-channels/channels/channels-tables/channels-tables.component.spec.ts b/src/app/eclair/peers-channels/channels/channels-tables/channels-tables.component.spec.ts index 6eed0356..dbe25ff5 100644 --- a/src/app/eclair/peers-channels/channels/channels-tables/channels-tables.component.spec.ts +++ b/src/app/eclair/peers-channels/channels/channels-tables/channels-tables.component.spec.ts @@ -1,20 +1,20 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { CLChannelsTablesComponent } from './channels-tables.component'; +import { ECLChannelsTablesComponent } from './channels-tables.component'; -describe('CLChannelsTablesComponent', () => { - let component: CLChannelsTablesComponent; - let fixture: ComponentFixture; +describe('ECLChannelsTablesComponent', () => { + let component: ECLChannelsTablesComponent; + let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ - declarations: [ CLChannelsTablesComponent ] + declarations: [ ECLChannelsTablesComponent ] }) .compileComponents(); })); beforeEach(() => { - fixture = TestBed.createComponent(CLChannelsTablesComponent); + fixture = TestBed.createComponent(ECLChannelsTablesComponent); component = fixture.componentInstance; fixture.detectChanges(); }); diff --git a/src/app/eclair/peers-channels/peers/peers.component.spec.ts b/src/app/eclair/peers-channels/peers/peers.component.spec.ts index f5b05a3e..1298e5e5 100644 --- a/src/app/eclair/peers-channels/peers/peers.component.spec.ts +++ b/src/app/eclair/peers-channels/peers/peers.component.spec.ts @@ -1,20 +1,20 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { CLPeersComponent } from './peers.component'; +import { ECLPeersComponent } from './peers.component'; -describe('CLPeersComponent', () => { - let component: CLPeersComponent; - let fixture: ComponentFixture; +describe('ECLPeersComponent', () => { + let component: ECLPeersComponent; + let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ - declarations: [ CLPeersComponent ] + declarations: [ ECLPeersComponent ] }) .compileComponents(); })); beforeEach(() => { - fixture = TestBed.createComponent(CLPeersComponent); + fixture = TestBed.createComponent(ECLPeersComponent); component = fixture.componentInstance; fixture.detectChanges(); });