Skip to content

Commit

Permalink
fix test name
Browse files Browse the repository at this point in the history
  • Loading branch information
zerovox committed Sep 19, 2019
1 parent 39f06c9 commit 6d5e89c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/color-test.js
Expand Up @@ -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();
});
Expand Down

0 comments on commit 6d5e89c

Please sign in to comment.