diff --git a/aio/content/guide/http.md b/aio/content/guide/http.md index a30fb83194..ec5c7be765 100644 --- a/aio/content/guide/http.md +++ b/aio/content/guide/http.md @@ -52,7 +52,7 @@ You can run the that accompanies this guide. The sample app does not require a data server. It relies on the -[Angular _in-memory-web-api_](https://github.com/angular/in-memory-web-api/blob/master/README.md), +[Angular _in-memory-web-api_](https://github.com/angular/angular/tree/master/packages/misc/angular-in-memory-web-api), which replaces the _HttpClient_ module's `HttpBackend`. The replacement service simulates the behavior of a REST-like backend. diff --git a/aio/content/tutorial/toh-pt6.md b/aio/content/tutorial/toh-pt6.md index f6504761d2..3ff79cd566 100644 --- a/aio/content/tutorial/toh-pt6.md +++ b/aio/content/tutorial/toh-pt6.md @@ -31,7 +31,7 @@ Next, still in the `AppModule`, add `HttpClient` to the `imports` array: ## Simulate a data server This tutorial sample mimics communication with a remote data server by using the -[In-memory Web API](https://github.com/angular/in-memory-web-api "In-memory Web API") module. +[In-memory Web API](https://github.com/angular/angular/tree/master/packages/misc/angular-in-memory-web-api "In-memory Web API") module. After installing the module, the app will make requests to and receive responses from the `HttpClient` without knowing that the *In-memory Web API* is intercepting those requests, diff --git a/aio/tests/e2e/src/app.e2e-spec.ts b/aio/tests/e2e/src/app.e2e-spec.ts index 92be250124..c96220249a 100644 --- a/aio/tests/e2e/src/app.e2e-spec.ts +++ b/aio/tests/e2e/src/app.e2e-spec.ts @@ -233,11 +233,11 @@ describe('site App', () => { expect(await page.ghLinks.get(0).getAttribute('href')) .toMatch(/https:\/\/github\.com\/angular\/angular\/edit\/master\/aio\/content\/tutorial\/toh-pt1\.md\?message=docs%3A%20describe%20your%20change\.\.\./); - await page.navigateTo('guide/http'); + await page.navigateTo('guide/router'); expect(await page.ghLinks.count()).toEqual(1); /* tslint:disable:max-line-length */ expect(await page.ghLinks.get(0).getAttribute('href')) - .toMatch(/https:\/\/github\.com\/angular\/angular\/edit\/master\/aio\/content\/guide\/http\.md\?message=docs%3A%20describe%20your%20change\.\.\./); + .toMatch(/https:\/\/github\.com\/angular\/angular\/edit\/master\/aio\/content\/guide\/router\.md\?message=docs%3A%20describe%20your%20change\.\.\./); }); it('should not be present on top level pages', async () => {