From 6d5e89c352c107c693adbdb889e1e3683926790c Mon Sep 17 00:00:00 2001 From: Tim Slatcher <933064+zerovox@users.noreply.github.com> Date: Thu, 19 Sep 2019 08:38:18 -0700 Subject: [PATCH] fix test name --- test/color-test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/color-test.js b/test/color-test.js index c2251c4..99ed663 100644 --- a/test/color-test.js +++ b/test/color-test.js @@ -26,12 +26,12 @@ tape("color(format) parses 3-digit hexadecimal (e.g., \"#abc\")", function(test) test.end(); }); -tape("color(format) parses 8-digit hexadecimal (e.g., \"#abcdef\")", function(test) { +tape("color(format) parses 8-digit hexadecimal (e.g., \"#abcdef33\")", function(test) { test.rgbEqual(color.color("#abcdef33"), 171, 205, 239, 0.2); test.end(); }); -tape("color(format) parses 4-digit hexadecimal (e.g., \"#abc\")", function(test) { +tape("color(format) parses 4-digit hexadecimal (e.g., \"#abc3\")", function(test) { test.rgbEqual(color.color("#abc3"), 170, 187, 204, 0.2); test.end(); });