diff --git a/aio/content/guide/http.md b/aio/content/guide/http.md index 9011cc2161..92362b4554 100644 --- a/aio/content/guide/http.md +++ b/aio/content/guide/http.md @@ -598,7 +598,7 @@ it('expects a GET request', inject([HttpClient, HttpTestingController], (http: H // At this point, the request is pending, and no response has been // sent. The next step is to expect that the request happened. - const req = httpMock.expectOne('/test'); + const req = httpMock.expectOne('/data'); // If no request with that URL was made, or if multiple requests match, // expectOne() would throw. However this test makes only one request to