diff options
| author | Julie | 2014-02-12 15:07:08 -0800 | 
|---|---|---|
| committer | Peter Bacon Darwin | 2014-02-16 19:03:42 +0000 | 
| commit | 9565cca15b6d30aefb78bcec411dea4f7b305019 (patch) | |
| tree | 1c0d58d7541b7d6fb96fb1d1d068d48eb0fca97a /src/ng/directive/ngCloak.js | |
| parent | cd508678cd9baffd2bc0c9e11ae724a7b2ff70bb (diff) | |
| download | angular.js-9565cca15b6d30aefb78bcec411dea4f7b305019.tar.bz2 | |
chore(protractor tests): fix up e2e tests
Diffstat (limited to 'src/ng/directive/ngCloak.js')
| -rw-r--r-- | src/ng/directive/ngCloak.js | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/ng/directive/ngCloak.js b/src/ng/directive/ngCloak.js index 21a32801..bf19117a 100644 --- a/src/ng/directive/ngCloak.js +++ b/src/ng/directive/ngCloak.js @@ -47,9 +47,9 @@       </file>       <file name="protractor.js" type="protractor">         it('should remove the template directive and css class', function() { -         expect($('.doc-example-live #template1').getAttribute('ng-cloak')). +         expect($('#template1').getAttribute('ng-cloak')).             toBeNull(); -         expect($('.doc-example-live #template2').getAttribute('ng-cloak')). +         expect($('#template2').getAttribute('ng-cloak')).             toBeNull();         });       </file> | 
