From 4aa6965d41a8bbb3e5a14def99bd40a309df692d Mon Sep 17 00:00:00 2001 From: Dylan Hunn Date: Tue, 14 Dec 2021 10:07:02 -0800 Subject: [PATCH] test(docs-infra): Correct an invalid assumption in aio tests. (#44479) The aio application expects `FormControl` to have no properties for the purposes of its own internal tests, but this is no longer true after #44434. PR Close #44479 --- aio/tests/e2e/src/api-pages.e2e-spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/tests/e2e/src/api-pages.e2e-spec.ts b/aio/tests/e2e/src/api-pages.e2e-spec.ts index 07d68a9d969..f2ae8282de7 100644 --- a/aio/tests/e2e/src/api-pages.e2e-spec.ts +++ b/aio/tests/e2e/src/api-pages.e2e-spec.ts @@ -58,7 +58,7 @@ describe('Api pages', () => { }); it('should not show a "Properties" section if there are only internal properties', async () => { - await page.navigateTo('api/forms/FormControl'); + await page.navigateTo('api/forms/AsyncValidator'); expect(await page.getSection('instance-properties').isPresent()).toBe(false); });