Tests: Fixed trailing commas.

This commit is contained in:
Scott González 2011-07-25 11:08:03 -04:00
parent 0080f2d581
commit 510bb40cab
2 changed files with 3 additions and 4 deletions

View File

@ -64,7 +64,6 @@ test( "positions", function() {
center: 3,
right: 6,
top: 0,
center: 3,
bottom: 6
};
var start = { left: 4, top: 4 };
@ -351,7 +350,7 @@ test( "collision: flip, with offset", function() {
collisionTest2({
collision: "flip",
at: "left-2 top-3",
at: "left-2 top-3"
}, { top: $( window ).height() + 3, left: $( window ).width() + 2 }, "right bottom, negative offset" );
});

View File

@ -96,7 +96,7 @@ test("step", function() {
min: 0,
value: 0,
step: 10,
max: 100,
max: 100
});
equals( el.slider("value"), 0 );
@ -116,7 +116,7 @@ el = $('<div></div>').slider({
min: 0,
value: 0,
step: 20,
max: 100,
max: 100
});
el.slider("value", 0);