Skip to content

Commit

Permalink
fix prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
asturur committed Jan 26, 2025
1 parent 3a0837d commit 9cc38c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/color/color.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ describe('test Color.fromHsla for color', () => {
stringToParse: 'hsl( -450, 50%, 50%, .5)',
expectedSource: [127, 64, 191, 0.5],
},
{
{
name: 'fromHsla with Saturation 0',
stringToParse: 'hsla(0, 0%, 50%, 1)',
expectedSource: [128, 128, 128, 1],
Expand Down Expand Up @@ -324,4 +324,4 @@ describe('parsing colors for color', () => {
expect(colorUppercase).toBeInstanceOf(Color);
expect(colorUppercase.getSource()).toEqual(expectedSource);
});
});
});

0 comments on commit 9cc38c8

Please sign in to comment.