File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
test/robotlegs/bender/extensions/signalCommandMap/impl Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ describe("SignalCommandTrigger", () => {
4242 beforeEach ( ( ) => {
4343 signal = new Signal ( ) ;
4444 injector = new RobotlegsInjector ( ) ;
45- subject = new SignalCommandTrigger ( injector , ISignal ) ;
45+ subject = new SignalCommandTrigger ( injector , Signal ) ;
4646 } ) ;
4747
4848 afterEach ( ( ) => {
@@ -215,7 +215,7 @@ describe("SignalCommandTrigger", () => {
215215 } ) ;
216216
217217 injector . bind ( ISignal ) . toConstantValue ( signal ) ;
218- subject = new SignalCommandTrigger ( injector , ISignal , processors ) ;
218+ subject = new SignalCommandTrigger ( injector , Signal , processors ) ;
219219 mapper = subject . createMapper ( ) ;
220220 mapper . toCommand ( NullCommand ) ;
221221 signal . dispatch ( ) ;
@@ -239,7 +239,7 @@ describe("SignalCommandTrigger", () => {
239239 } ) ;
240240
241241 injector . bind ( ISignal ) . toConstantValue ( signal ) ;
242- subject = new SignalCommandTrigger ( injector , ISignal , processors ) ;
242+ subject = new SignalCommandTrigger ( injector , Signal , processors ) ;
243243 mapper = subject . createMapper ( ) ;
244244 mapper . toCommand ( NullCommand ) ;
245245 signal . dispatch ( ) ;
You can’t perform that action at this time.
0 commit comments