From aa6dd71e9c54a7c536b0eee5efdc9230edc32164 Mon Sep 17 00:00:00 2001 From: delucis Date: Sat, 1 Jan 2022 19:46:07 +0100 Subject: [PATCH] test(mix): Fix bad partial commit dbed562 --- src/mix.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mix.test.ts b/src/mix.test.ts index 95d6c94..e9f2804 100644 --- a/src/mix.test.ts +++ b/src/mix.test.ts @@ -59,7 +59,7 @@ test('mix with transparent and weight 0%', () => { }); test('mix with transparent and weight 100%', () => { - `"rgba(255, 0, 0, 0)"` expect(mix('red', 'rgba(255, 0, 0, 0)', 1)).toMatchInlineSnapshot( + `"rgba(255, 0, 0, 0)"` ); });