From 0b7dc2f9ff0c675d58a22e81744de135ad2fe6ac Mon Sep 17 00:00:00 2001 From: Phong Huynh Date: Thu, 6 Oct 2016 13:22:39 -0400 Subject: [PATCH] docs(RouterTestingModule) change modules to imports in example (#12118) --- modules/@angular/router/testing/router_testing_module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/@angular/router/testing/router_testing_module.ts b/modules/@angular/router/testing/router_testing_module.ts index 423caba181..5903b040d5 100644 --- a/modules/@angular/router/testing/router_testing_module.ts +++ b/modules/@angular/router/testing/router_testing_module.ts @@ -81,7 +81,7 @@ export function setupTestingRouter( * ``` * beforeEach(() => { * TestBed.configureTestModule({ - * modules: [ + * imports: [ * RouterTestingModule.withRoutes( * [{path: '', component: BlankCmp}, {path: 'simple', component: SimpleCmp}])] * )