Skip to content

Commit 84a3133

Browse files
committed
chore: Formatting issues
1 parent 17fb8a4 commit 84a3133

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/igniteui-angular-elements/src/lib/icon.broadcast.service.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)