From c19d8a7546d0519ed04be65218266a617d0410a5 Mon Sep 17 00:00:00 2001 From: Zeke Sikelianos Date: Wed, 26 Nov 2014 20:54:42 -0800 Subject: [PATCH] fix tests --- test/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/index.js b/test/index.js index 18b6501..b3f2c13 100644 --- a/test/index.js +++ b/test/index.js @@ -15,7 +15,7 @@ suite('namer', function () { assert.equal(names[0].distance, 0) }) - test('defaults to HTML color candidates', function() { + test('defaults to basic color candidates', function() { var names = namer('0000FF') assert.equal(names.length, 21) }) @@ -61,7 +61,7 @@ suite('namer', function () { assert.equal(names[0].distance, 0) }) - test('accepts non-hex input formats', function() { + test('accepts HSL input', function() { var names = namer("hsl(50,100%,50%)") assert.equal(names[0].name, 'gold') })