Skip to content

Commit 69491e1

Browse files
PooShamdevversion
authored andcommitted
fix(material/dialog): fix mismatching test names between mdc and non-mdc
1 parent b4a9cb3 commit 69491e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/material-experimental/mdc-dialog/dialog.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1671,7 +1671,7 @@ describe('MDC-based MatDialog', () => {
16711671
.toBe(title.id);
16721672
}));
16731673

1674-
it('should add mat-mdc-dialog-actions-align-* class according to given [align] input in [mat-dialog-actions]', () => {
1674+
it('should add correct css class according to given [align] input in [mat-dialog-actions]', () => {
16751675
let actions = overlayContainerElement.querySelector('mat-dialog-actions')!;
16761676

16771677
expect(actions)

src/material/dialog/dialog.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1734,7 +1734,7 @@ describe('MatDialog', () => {
17341734
.toBe(title.id);
17351735
}));
17361736

1737-
it('should add mat-dialog-actions-align-* class according to given [align] input in [mat-dialog-actions]', () => {
1737+
it('should add correct css class according to given [align] input in [mat-dialog-actions]', () => {
17381738
let actions = overlayContainerElement.querySelector('mat-dialog-actions')!;
17391739

17401740
expect(actions)

0 commit comments

Comments
 (0)