Skip to content

Commit 4aa6965

Browse files
dylhunnalxhub
authored andcommitted
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
1 parent 093fd39 commit 4aa6965

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aio/tests/e2e/src/api-pages.e2e-spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ describe('Api pages', () => {
5858
});
5959

6060
it('should not show a "Properties" section if there are only internal properties', async () => {
61-
await page.navigateTo('api/forms/FormControl');
61+
await page.navigateTo('api/forms/AsyncValidator');
6262
expect(await page.getSection('instance-properties').isPresent()).toBe(false);
6363
});
6464

0 commit comments

Comments
 (0)