We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5a0515 commit 3781943Copy full SHA for 3781943
src/components/checkbox/checkbox.spec.ts
@@ -137,7 +137,7 @@ export function main() {
137
it('sets the "aria-labelledby" attribute to the id of the label', function(done: () => void) {
138
builder.createAsync(CheckboxController).then(function(fixture) {
139
fixture.detectChanges();
140
- let el = fixture.debugElement.query(By.css('.mc-checkbox'));
+ let el = fixture.debugElement.query(By.css('.md-checkbox'));
141
let label = el.nativeElement.querySelector('label');
142
expect(el.nativeElement.getAttribute('aria-labelledby')).toEqual(label.id);
143
}).then(done).catch(done);
0 commit comments