diff --git a/test/ngAria/ariaSpec.js b/test/ngAria/ariaSpec.js
index 37c4f17bf1d8..ff506d299f34 100644
--- a/test/ngAria/ariaSpec.js
+++ b/test/ngAria/ariaSpec.js
@@ -249,7 +249,7 @@ describe('$aria', function() {
});
it('should not add a role to a native checkbox', function() {
- compileElement('');
+ compileElement('');
expect(element.attr('role')).toBe(undefined);
});
@@ -259,7 +259,7 @@ describe('$aria', function() {
});
it('should not add a role to a native radio button', function() {
- compileElement('');
+ compileElement('');
expect(element.attr('role')).toBe(undefined);
});
@@ -269,7 +269,7 @@ describe('$aria', function() {
});
it('should not add a role to a native range input', function() {
- compileElement('');
+ compileElement('');
expect(element.attr('role')).toBe(undefined);
});
});