From 64631063aece248575dad228d0bd993ddf196918 Mon Sep 17 00:00:00 2001 From: Alexey Okhrimenko Date: Mon, 30 Mar 2020 23:31:37 +0300 Subject: [PATCH] docs: fix typo in Tests guide (#36330) Fixing typo in testing.md PR Close #36330 --- aio/content/guide/testing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/guide/testing.md b/aio/content/guide/testing.md index a6a7945e72..6d5a2ef7eb 100644 --- a/aio/content/guide/testing.md +++ b/aio/content/guide/testing.md @@ -1242,7 +1242,7 @@ The following test confirms the expected behavior when the service returns an `E Note that the `it()` function receives an argument of the following form. ```javascript -fakeAsync(() => { /* test body */ })` +fakeAsync(() => { /* test body */ }) ``` The `fakeAsync()` function enables a linear coding style by running the test body in a special `fakeAsync test zone`. @@ -3159,7 +3159,7 @@ Here are the most important static methods, in order of likely utility. - A few of the `TestBed` instance methods are not covered by static `TestBed` _class_ methods. These are rarely needed.