Skip to content
This repository was archived by the owner on Oct 1, 2018. It is now read-only.

Commit f1338dd

Browse files
committed
test(toolbar): fix broken import on spec
1 parent 2bf6f6d commit f1338dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/core/components/toolbar/toolbar.component.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
33
import { RouterTestingModule } from '@angular/router/testing';
44

55
import { ToolbarComponent } from './toolbar.component';
6-
import { SharedModule } from '../shared.module';
6+
import { MaterialModule } from '../../../material/material.module';
77

88
describe('ToolbarComponent', () => {
99
let component: ToolbarComponent;
@@ -12,7 +12,7 @@ describe('ToolbarComponent', () => {
1212
beforeEach(
1313
async(() => {
1414
TestBed.configureTestingModule({
15-
imports: [SharedModule, BrowserAnimationsModule, RouterTestingModule],
15+
imports: [MaterialModule, BrowserAnimationsModule, RouterTestingModule],
1616
declarations: [ToolbarComponent]
1717
}).compileComponents();
1818
})

0 commit comments

Comments
 (0)