From b6c3a3be824b5a3c4b4929b4accd30788d9c163e Mon Sep 17 00:00:00 2001 From: mohamed amr Date: Sat, 27 Feb 2016 20:23:38 +0200 Subject: [PATCH] fix(ngAriaSpec): remove wrong input closing tag remove wrong closed div tag after input element fixes #14146 --- test/ngAria/ariaSpec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); }); });