Skip to content

Commit 5f9293f

Browse files
committed
fix: lint fix
1 parent 5934794 commit 5f9293f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

projects/common/src/color/color-palette.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,20 +37,20 @@ describe('Color palette', () => {
3737
expect(palette.getColorCombinations(2)).toEqual([
3838
{
3939
background: 'rgb(255, 251, 235)',
40-
foreground: '#080909',
40+
foreground: '#080909'
4141
},
4242
{
4343
background: 'rgb(20, 3, 0)',
44-
foreground: '#FFFFFF',
44+
foreground: '#FFFFFF'
4545
}
4646
]);
47-
})
47+
});
4848

4949
test('should generate color for a string as expected from a limited set', () => {
5050
const palette = new ColorPalette(['#fffbeb', '#140300', '#789ab7']);
5151
expect(palette.getColorCombinationForId(2, 'test')).toEqual({
5252
background: 'rgb(255, 251, 235)',
53-
foreground: '#080909',
53+
foreground: '#080909'
5454
});
55-
})
55+
});
5656
});

0 commit comments

Comments
 (0)