Skip to content

Commit

Permalink
Update add-filter.component.spec.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielHabenicht authored Jun 24, 2019
1 parent 2472d18 commit 8c7955a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ describe('AddFilterComponent', () => {
template: '<app-add-filter [filterColumn]="column" [filterValue]="filterValue"></app-add-filter>'
})
class TestComponentWrapperWithoutDisplayText {
@ViewChild(AddFilterComponent, { static: true })
@ViewChild(AddFilterComponent, { static: false })
public componentUnderTest: AddFilterComponent;
public column = ColumnDefinitions.orgUnit;
public filterValue = 'filter';
Expand All @@ -75,7 +75,7 @@ class TestComponentWrapperWithoutDisplayText {
'<app-add-filter [filterColumn]="column" [filterValue]="filterValue" [displayText]="displayText"></app-add-filter>'
})
class TestComponentWrapperFullIO {
@ViewChild(AddFilterComponent, { static: true })
@ViewChild(AddFilterComponent, { static: false })
public componentUnderTest: AddFilterComponent;
public column = ColumnDefinitions.orgUnit;

Expand Down

0 comments on commit 8c7955a

Please sign in to comment.