From 2d7435daae6ce9ec30054d2fe920e697571cf0e7 Mon Sep 17 00:00:00 2001 From: Greg Magolan Date: Tue, 19 Mar 2019 11:44:35 -0700 Subject: [PATCH] build(bazel): fix router test failure (#29375) PR Close #29375 --- packages/router/test/router_state.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/router/test/router_state.spec.ts b/packages/router/test/router_state.spec.ts index 369d4ca26c..b063492e4d 100644 --- a/packages/router/test/router_state.spec.ts +++ b/packages/router/test/router_state.spec.ts @@ -199,7 +199,7 @@ describe('RouterState & Snapshot', () => { function createActivatedRouteSnapshot(cmp: string) { return new (ActivatedRouteSnapshot as any)( - null, null, null, null, null, null, cmp, null, + [], null, null, null, null, null, cmp, null, null, -1, null !); }