diff options
Diffstat (limited to 'src/Angular.js')
| -rw-r--r-- | src/Angular.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Angular.js b/src/Angular.js index 49a30c07..367a7752 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -613,8 +613,8 @@ function isLeafNode (node) { * </doc:source> * <doc:scenario> it('should print that initialy the form object is NOT equal to master', function() { - expect(element('.doc-example-live input[name=master.salutation]').val()).toBe('Hello'); - expect(element('.doc-example-live input[name=master.name]').val()).toBe('world'); + expect(element('.doc-example-live input[name="master.salutation"]').val()).toBe('Hello'); + expect(element('.doc-example-live input[name="master.name"]').val()).toBe('world'); expect(element('.doc-example-live span').css('display')).toBe('inline'); }); @@ -705,8 +705,8 @@ function copy(source, destination){ * </doc:source> * <doc:scenario> it('should print that initialy greeting is equal to the hardcoded value object', function() { - expect(element('.doc-example-live input[name=greeting.salutation]').val()).toBe('Hello'); - expect(element('.doc-example-live input[name=greeting.name]').val()).toBe('world'); + expect(element('.doc-example-live input[name="greeting.salutation"]').val()).toBe('Hello'); + expect(element('.doc-example-live input[name="greeting.name"]').val()).toBe('world'); expect(element('.doc-example-live span').css('display')).toBe('none'); }); |
