diff options
| author | Jürgen Walter | 2013-12-04 17:24:50 +0100 | 
|---|---|---|
| committer | Pete Bacon Darwin | 2013-12-12 11:22:31 +0000 | 
| commit | cf2a7614a411e34b54742fd1394b22f8a52104d7 (patch) | |
| tree | 13e745644df66e316f3f96b0c76bb7d56ac42942 /docs/content/tutorial | |
| parent | 9e538e7c311f42b71753920e1d3e903c69eb6e01 (diff) | |
| download | angular.js-cf2a7614a411e34b54742fd1394b22f8a52104d7.tar.bz2 | |
docs(tutorial/step-07): update path to pages in e2e scenarios
The url paths in the tutorial are not in line with the actual tutorial code
Closes #5264
Diffstat (limited to 'docs/content/tutorial')
| -rw-r--r-- | docs/content/tutorial/step_07.ngdoc | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/docs/content/tutorial/step_07.ngdoc b/docs/content/tutorial/step_07.ngdoc index 110b383b..87c9f8d0 100644 --- a/docs/content/tutorial/step_07.ngdoc +++ b/docs/content/tutorial/step_07.ngdoc @@ -258,7 +258,7 @@ to various URLs and verify that the correct view was rendered.  <pre>  ...    it('should redirect index.html to index.html#/phones', function() { -    browser().navigateTo('../../app/index.html'); +    browser().navigateTo('app/index.html');      expect(browser().location().url()).toBe('/phones');    });  ... @@ -266,7 +266,7 @@ to various URLs and verify that the correct view was rendered.   describe('Phone detail view', function() {      beforeEach(function() { -      browser().navigateTo('../../app/index.html#/phones/nexus-s'); +      browser().navigateTo('app/index.html#/phones/nexus-s');      }); | 
