Skip to content

Commit 3781943

Browse files
committed
fix(checkbox): fix typo in test selector.
1 parent c5a0515 commit 3781943

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/checkbox/checkbox.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export function main() {
137137
it('sets the "aria-labelledby" attribute to the id of the label', function(done: () => void) {
138138
builder.createAsync(CheckboxController).then(function(fixture) {
139139
fixture.detectChanges();
140-
let el = fixture.debugElement.query(By.css('.mc-checkbox'));
140+
let el = fixture.debugElement.query(By.css('.md-checkbox'));
141141
let label = el.nativeElement.querySelector('label');
142142
expect(el.nativeElement.getAttribute('aria-labelledby')).toEqual(label.id);
143143
}).then(done).catch(done);

0 commit comments

Comments
 (0)