@@ -626,7 +626,7 @@ describe('angular', function() {
626
626
delete jq . name_ ;
627
627
} ) ;
628
628
629
- it ( 'should return undefined when jq is not set, no jquery found (the default)' , function ( ) {
629
+ it ( 'should return undefined when jq is not set, no jQuery found (the default)' , function ( ) {
630
630
expect ( jq ( ) ) . toBe ( undefined ) ;
631
631
} ) ;
632
632
@@ -665,7 +665,7 @@ describe('angular', function() {
665
665
expect ( document . querySelector ) . toHaveBeenCalledWith ( '[ng\\:jq]' ) ;
666
666
} ) ;
667
667
668
- it ( 'should return "jquery " when jq is enabled manually via [ng-jq] with value "jQuery"' , function ( ) {
668
+ it ( 'should return "jQuery " when jq is enabled manually via [ng-jq] with value "jQuery"' , function ( ) {
669
669
element . setAttribute ( 'ng-jq' , 'jQuery' ) ;
670
670
spyOn ( document , 'querySelector' ) . andCallFake ( function ( selector ) {
671
671
if ( selector === '[ng-jq]' ) return element ;
@@ -674,7 +674,7 @@ describe('angular', function() {
674
674
expect ( document . querySelector ) . toHaveBeenCalledWith ( '[ng-jq]' ) ;
675
675
} ) ;
676
676
677
- it ( 'should return "jquery " when jq is enabled manually via [data-ng-jq] with value "jQuery"' , function ( ) {
677
+ it ( 'should return "jQuery " when jq is enabled manually via [data-ng-jq] with value "jQuery"' , function ( ) {
678
678
element . setAttribute ( 'data-ng-jq' , 'jQuery' ) ;
679
679
spyOn ( document , 'querySelector' ) . andCallFake ( function ( selector ) {
680
680
if ( selector === '[data-ng-jq]' ) return element ;
@@ -683,7 +683,7 @@ describe('angular', function() {
683
683
expect ( document . querySelector ) . toHaveBeenCalledWith ( '[data-ng-jq]' ) ;
684
684
} ) ;
685
685
686
- it ( 'should return "jquery " when jq is enabled manually via [x-ng-jq] with value "jQuery"' , function ( ) {
686
+ it ( 'should return "jQuery " when jq is enabled manually via [x-ng-jq] with value "jQuery"' , function ( ) {
687
687
element . setAttribute ( 'x-ng-jq' , 'jQuery' ) ;
688
688
spyOn ( document , 'querySelector' ) . andCallFake ( function ( selector ) {
689
689
if ( selector === '[x-ng-jq]' ) return element ;
@@ -692,7 +692,7 @@ describe('angular', function() {
692
692
expect ( document . querySelector ) . toHaveBeenCalledWith ( '[x-ng-jq]' ) ;
693
693
} ) ;
694
694
695
- it ( 'should return "jquery " when jq is enabled manually via [ng:jq] with value "jQuery"' , function ( ) {
695
+ it ( 'should return "jQuery " when jq is enabled manually via [ng:jq] with value "jQuery"' , function ( ) {
696
696
element . setAttribute ( 'ng:jq' , 'jQuery' ) ;
697
697
spyOn ( document , 'querySelector' ) . andCallFake ( function ( selector ) {
698
698
if ( selector === '[ng\\:jq]' ) return element ;
0 commit comments