aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/ajax.js
diff options
context:
space:
mode:
authorjaubourg <j@ubourg.net>2011-01-07 15:52:58 +0100
committerjaubourg <j@ubourg.net>2011-01-07 15:52:58 +0100
commit368f2441f64e95fe5dfda318709e795833470903 (patch)
treefa4461a8c8b05efe75659d11711fd894ed41b81b /test/unit/ajax.js
parent1ca82ccd9489f11d3a8fbdd8a32b4c164ffaf483 (diff)
downloadjquery-368f2441f64e95fe5dfda318709e795833470903.tar.gz
jquery-368f2441f64e95fe5dfda318709e795833470903.zip
Added missing commas.
Diffstat (limited to 'test/unit/ajax.js')
-rw-r--r--test/unit/ajax.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/unit/ajax.js b/test/unit/ajax.js
index a0697fed1..9713506ad 100644
--- a/test/unit/ajax.js
+++ b/test/unit/ajax.js
@@ -135,7 +135,7 @@ test("jQuery.ajax() - success callbacks (oncomplete binding)", function() {
.error(function(){ ok(false, "error"); })
.complete(function(){ start(); });
}
- })
+ });
}, 13);
});
@@ -173,7 +173,7 @@ test("jQuery.ajax() - success callbacks (very late binding)", function() {
.complete(function(){ start(); });
},100);
}
- })
+ });
}, 13);
});
@@ -438,7 +438,7 @@ test("jQuery.ajax context modification", function() {
stop();
- var obj = {}
+ var obj = {};
jQuery.ajax({
url: url("data/name.html"),
@@ -1522,7 +1522,7 @@ test("data option: evaluate function values (#2806)", function() {
equals( result, "key=value" );
start();
}
- })
+ });
});
test("data option: empty bodies for non-GET requests", function() {
@@ -1535,7 +1535,7 @@ test("data option: empty bodies for non-GET requests", function() {
equals( result, "" );
start();
}
- })
+ });
});
test("jQuery.ajax - If-Modified-Since support", function() {
@@ -1560,7 +1560,7 @@ test("jQuery.ajax - If-Modified-Since support", function() {
ok(true, "Opera is incapable of doing .setRequestHeader('If-Modified-Since').");
} else {
equals(status, "notmodified");
- ok(data == null, "response body should be empty")
+ ok(data == null, "response body should be empty");
}
start();
},
@@ -1607,7 +1607,7 @@ test("jQuery.ajax - Etag support", function() {
ok(true, "Opera is incapable of doing .setRequestHeader('If-None-Match').");
} else {
equals(status, "notmodified");
- ok(data == null, "response body should be empty")
+ ok(data == null, "response body should be empty");
}
start();
},