We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 258e986 commit f6663b4Copy full SHA for f6663b4
test/ng/compileSpec.js
@@ -3064,7 +3064,7 @@ describe('$compile', function() {
3064
element = $compile('<span ng:attr:test="{{name}}" ng-Attr-test2="{{name}}" ng_Attr_test3="{{name}}"></span>')($rootScope);
3065
expect(element.attr('test')).toBeUndefined();
3066
expect(element.attr('test2')).toBeUndefined();
3067
- expect(element.attr('test2')).toBeUndefined();
+ expect(element.attr('test3')).toBeUndefined();
3068
$rootScope.$digest();
3069
expect(element.attr('test')).toBe('Misko');
3070
expect(element.attr('test2')).toBe('Misko');
0 commit comments