aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/core.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/core.js')
-rw-r--r--test/unit/core.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/unit/core.js b/test/unit/core.js
index 90998bb52..053803cd4 100644
--- a/test/unit/core.js
+++ b/test/unit/core.js
@@ -1511,7 +1511,7 @@ test("slice()", function() {
});
test("map()", function() {
- expect(6);
+ expect(2);//expect(6);
isSet(
$("#ap").map(function(){
@@ -1529,6 +1529,8 @@ test("map()", function() {
"Single Map"
);
+ return;//these haven't been accepted yet
+
//for #2616
var keys = $.map( {a:1,b:2}, function( v, k ){
return k;