From 47701277a3a0171264c5afb6c4c00582f5a9666c Mon Sep 17 00:00:00 2001 From: Julian Simioni Date: Wed, 16 Sep 2015 17:20:12 -0400 Subject: [PATCH] Rename test with duplicate, non descriptive name --- test/unit/sanitiser/place.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/sanitiser/place.js b/test/unit/sanitiser/place.js index 2dc3b76f..634b49ea 100644 --- a/test/unit/sanitiser/place.js +++ b/test/unit/sanitiser/place.js @@ -72,7 +72,7 @@ module.exports.tests.sanitize_id = function(test, common) { }; module.exports.tests.sanitize_ids = function(test, common) { - test('ids: invalid input', function(t) { + test('ids: invalid input with multiple values', function(t) { var req = { query: { id: inputs.invalid } }; var expected = [ 'invalid param \'id\': text length, must be >0', @@ -91,7 +91,7 @@ module.exports.tests.sanitize_ids = function(test, common) { t.end(); }); - test('ids: valid input', function(t) { + test('ids: valid input with multiple of values' , function(t) { var expected={}; expected.ids = []; inputs.valid.forEach( function( input ){