@@ -36,7 +36,7 @@ describe('Icon broadcast service', () => {
3636 it ( 'should correctly process event of icons registering on channel.' , async ( ) => {
3737 // simulate a new icon being registered on channel
3838 const icons : Map < string , Map < string , SvgIcon > > = new Map ( ) ;
39- const icon : Map < string , SvgIcon > = new Map ( )
39+ const icon : Map < string , SvgIcon > = new Map ( ) ;
4040 icon . set ( "customIcon" , { svg : buildIcon } ) ;
4141 icons . set ( "customCollection" , icon ) ;
4242 const message : BroadcastIconsChangeMessage = {
@@ -54,7 +54,7 @@ describe('Icon broadcast service', () => {
5454
5555 it ( 'should correctly process event of setting an icon reference on channel.' , async ( ) => {
5656 const refs : Map < string , Map < string , IconMeta > > = new Map ( ) ;
57- const ref : Map < string , IconMeta > = new Map ( )
57+ const ref : Map < string , IconMeta > = new Map ( ) ;
5858 ref . set ( "customIcon" , { name : "customNameOfIcon" , collection : "customCollection" } as any ) ;
5959 refs . set ( "customCollection" , ref ) ;
6060 const message : BroadcastIconsChangeMessage = {
0 commit comments