Index: Tools/GardeningServer/scripts/base_unittests.js |
diff --git a/Tools/GardeningServer/scripts/base_unittests.js b/Tools/GardeningServer/scripts/base_unittests.js |
index a416c8d82d0b2ed45d048ad1c5e05fa2ab86d2b6..9869e989692d984f851f5ec5874a558f593d5a29 100644 |
--- a/Tools/GardeningServer/scripts/base_unittests.js |
+++ b/Tools/GardeningServer/scripts/base_unittests.js |
@@ -95,24 +95,6 @@ test("filterDictionary", 3, function() { |
}); |
}); |
-test("mapDictionary", 3, function() { |
- deepEqual(base.mapDictionary({}, function(value) { return value - 10; }), {}); |
- var dictionary = { |
- 'foo': 43, |
- 'bar': 11 |
- }; |
- deepEqual(base.mapDictionary(dictionary, function(value) { return value - 10; }), { |
- "foo": 33, |
- "bar": 1 |
- }); |
- deepEqual(base.mapDictionary(dictionary, function(value) { |
- if (value > 20) |
- return value - 20; |
- }), { |
- "foo": 23, |
- }); |
-}); |
- |
test("filterTree", 2, function() { |
var tree = { |
'path': { |