forked from angular/angular.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The changes made in 2a156c2 caused this test to fail. The test was trying to find an anchor with specified text but the anchor had changed to a button.
- Loading branch information
1 parent
2a156c2
commit bee6cbf
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -127,12 +127,12 @@ | |
* expect(secondRepeat.element(by.model('contact.value')).getAttribute('value')) | ||
* .toBe('[email protected]'); | ||
* | ||
* firstRepeat.element(by.linkText('clear')).click(); | ||
* firstRepeat.element(by.buttonText('clear')).click(); | ||
* | ||
* expect(firstRepeat.element(by.model('contact.value')).getAttribute('value')) | ||
* .toBe(''); | ||
* | ||
* container.element(by.linkText('add')).click(); | ||
* container.element(by.buttonText('add')).click(); | ||
* | ||
* expect(container.element(by.repeater('contact in settings.contacts').row(2)) | ||
* .element(by.model('contact.value')) | ||
|
@@ -210,12 +210,12 @@ | |
* expect(secondRepeat.element(by.model('contact.value')).getAttribute('value')) | ||
* .toBe('[email protected]'); | ||
* | ||
* firstRepeat.element(by.linkText('clear')).click(); | ||
* firstRepeat.element(by.buttonText('clear')).click(); | ||
* | ||
* expect(firstRepeat.element(by.model('contact.value')).getAttribute('value')) | ||
* .toBe(''); | ||
* | ||
* container.element(by.linkText('add')).click(); | ||
* container.element(by.buttonText('add')).click(); | ||
* | ||
* expect(container.element(by.repeater('contact in contacts').row(2)) | ||
* .element(by.model('contact.value')) | ||
|