@@ -12036,7 +12036,7 @@ describe('$compile', function() {
12036
12036
}));
12037
12037
});
12038
12038
inject(function($compile, $rootScope) {
12039
- $compile('<div attr-exposer ng-attr-title="12" ng-attr-super-title="34" ng-attr-camel_title="56">')($rootScope);
12039
+ $compile('<div attr-exposer ng-attr-title="12" ng-attr-super-title="34" ng-attr-my- camel_title="56">')($rootScope);
12040
12040
$rootScope.$apply();
12041
12041
12042
12042
expect(attrs.title).toBe('12');
@@ -12049,10 +12049,10 @@ describe('$compile', function() {
12049
12049
expect(attrs.ngAttrSuperTitle).toBeUndefined();
12050
12050
expect(attrs.$attr.ngAttrSuperTitle).toBeUndefined();
12051
12051
12052
- expect(attrs.cameltitle ).toBe('56');
12053
- expect(attrs.$attr.cameltitle ).toBe('camelTitle');
12054
- expect(attrs.ngAttrCameltitle ).toBeUndefined();
12055
- expect(attrs.$attr.ngAttrCameltitle ).toBeUndefined();
12052
+ expect(attrs.myCameltitle ).toBe('56');
12053
+ expect(attrs.$attr.myCameltitle ).toBe('my- camelTitle');
12054
+ expect(attrs.ngAttrMyCameltitle ).toBeUndefined();
12055
+ expect(attrs.$attr.ngAttrMyCameltitle ).toBeUndefined();
12056
12056
});
12057
12057
})
12058
12058
@@ -12310,7 +12310,7 @@ describe('$compile', function() {
12310
12310
}));
12311
12311
});
12312
12312
inject(function($compile, $rootScope) {
12313
- $compile('<div attr-exposer ng-prop-title="12" ng-prop-super-title="34" ng-prop-camel_title="56">')($rootScope);
12313
+ $compile('<div attr-exposer ng-prop-title="12" ng-prop-super-title="34" ng-prop-my- camel_title="56">')($rootScope);
12314
12314
$rootScope.$apply();
12315
12315
12316
12316
expect(attrs.title).toBeUndefined();
@@ -12323,10 +12323,10 @@ describe('$compile', function() {
12323
12323
expect(attrs.ngPropSuperTitle).toBe('34');
12324
12324
expect(attrs.$attr.ngPropSuperTitle).toBe('ng-prop-super-title');
12325
12325
12326
- expect(attrs.camelTitle ).toBeUndefined();
12327
- expect(attrs.$attr.camelTitle ).toBeUndefined();
12328
- expect(attrs.ngPropCamelTitle ).toBe('56');
12329
- expect(attrs.$attr.ngPropCamelTitle ).toBe('ng-prop-camel_title');
12326
+ expect(attrs.myCamelTitle ).toBeUndefined();
12327
+ expect(attrs.$attr.myCamelTitle ).toBeUndefined();
12328
+ expect(attrs.ngPropMyCamelTitle ).toBe('56');
12329
+ expect(attrs.$attr.ngPropMyCamelTitle ).toBe('ng-prop-my -camel_title');
12330
12330
});
12331
12331
});
12332
12332
0 commit comments