Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 43b1a37

Browse files
kboutsencaitp
authored andcommitted
docs(tutorial/step_4: update test to match new $bindings behaviour
var phoneNameColumn = element.all(by.repeater('phone in phones').column('{{phone.name}}')); should be var phoneNameColumn = element.all(by.repeater('phone in phones').column('phone.name')); Closes #9823
1 parent b4db713 commit 43b1a37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/content/tutorial/step_04.ngdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ __`test/e2e/scenarios.js`:__
150150
...
151151
it('should be possible to control phone order via the drop down select box', function() {
152152

153-
var phoneNameColumn = element.all(by.repeater('phone in phones').column('{{phone.name}}'));
153+
var phoneNameColumn = element.all(by.repeater('phone in phones').column('phone.name'));
154154
var query = element(by.model('query'));
155155

156156
function getNames() {

0 commit comments

Comments
 (0)