From 1c0bdb887df900702a310f59b422822d892ba13e Mon Sep 17 00:00:00 2001 From: dummdidumm <5968653+dummdidumm@users.noreply.github.com> Date: Tue, 3 Apr 2018 09:47:15 +0200 Subject: [PATCH] #853 build fix --- modules/store-devtools/spec/extension.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/store-devtools/spec/extension.spec.ts b/modules/store-devtools/spec/extension.spec.ts index 2180786ff7..b948bb25f6 100644 --- a/modules/store-devtools/spec/extension.spec.ts +++ b/modules/store-devtools/spec/extension.spec.ts @@ -379,7 +379,7 @@ describe('DevtoolsExtension', () => { }); it('should not notify extension of PERFORM_ACTIONs', () => { - const action = new PerformAction({ type: 'ACTION' }); + const action = new PerformAction({ type: 'ACTION' }, +Date.now()); const state = createState(undefined, undefined, true); devtoolsExtension.notify(action, state); @@ -413,7 +413,7 @@ describe('DevtoolsExtension', () => { }); it('should not notify extension of PERFORM_ACTIONs', () => { - const action = new PerformAction({ type: 'ACTION' }); + const action = new PerformAction({ type: 'ACTION' }, +Date.now()); const state = createState(undefined, undefined, undefined, true); devtoolsExtension.notify(action, state);