Skip to content

Commit de9ab36

Browse files
committed
fix broken test
1 parent 4eb0e64 commit de9ab36

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
import {MatList} from '@angular/material-experimental/mdc-list';
2+
13
it('should have unit tests', () => {
24
// TODO: Implement.
5+
expect(MatList).toBe(MatList);
36
});

src/material-experimental/mdc-list/nav-list.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88

99
import {ChangeDetectionStrategy, Component, ViewEncapsulation} from '@angular/core';
10-
import {MatList} from '@angular/material-experimental/mdc-list/list';
10+
import {MatList} from './list';
1111
import {MatListBase} from './list-base';
1212

1313
@Component({
@@ -29,7 +29,7 @@ import {MatListBase} from './list-base';
2929
* @deprecated Provider for `MatList` will be removed, use `MatNavList` instead.
3030
* @breaking-change 11.0.0
3131
*/
32-
{ provide: MatList, useExisting: MatNavList }
32+
{provide: MatList, useExisting: MatNavList}
3333
]
3434
})
3535
export class MatNavList extends MatListBase {}

0 commit comments

Comments
 (0)