Skip to content

Commit

Permalink
Added missing commas.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaubourg committed Jan 7, 2011
1 parent 1ca82cc commit 368f244
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions test/unit/ajax.js
Expand Up @@ -135,7 +135,7 @@ test("jQuery.ajax() - success callbacks (oncomplete binding)", function() {
.error(function(){ ok(false, "error"); })
.complete(function(){ start(); });
}
})
});
}, 13);
});

Expand Down Expand Up @@ -173,7 +173,7 @@ test("jQuery.ajax() - success callbacks (very late binding)", function() {
.complete(function(){ start(); });
},100);
}
})
});
}, 13);
});

Expand Down Expand Up @@ -438,7 +438,7 @@ test("jQuery.ajax context modification", function() {

stop();

var obj = {}
var obj = {};

jQuery.ajax({
url: url("data/name.html"),
Expand Down Expand Up @@ -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() {
Expand All @@ -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() {
Expand All @@ -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();
},
Expand Down Expand Up @@ -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();
},
Expand Down

3 comments on commit 368f244

@mathiasbynens
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You mean semicolons? :P

@dmethvin
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Around here we call 'em one-eyed commas.

@jaubourg
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And to think I even checked the word, found the one I righfully thought was right yet still used the wrong one in the commit message ;)

Please sign in to comment.