Skip to content

Commit 510bb40

Browse files
committed
Tests: Fixed trailing commas.
1 parent 0080f2d commit 510bb40

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

tests/unit/position/position_core.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ test( "positions", function() {
6464
center: 3,
6565
right: 6,
6666
top: 0,
67-
center: 3,
6867
bottom: 6
6968
};
7069
var start = { left: 4, top: 4 };
@@ -351,7 +350,7 @@ test( "collision: flip, with offset", function() {
351350

352351
collisionTest2({
353352
collision: "flip",
354-
at: "left-2 top-3",
353+
at: "left-2 top-3"
355354
}, { top: $( window ).height() + 3, left: $( window ).width() + 2 }, "right bottom, negative offset" );
356355
});
357356

tests/unit/slider/slider_options.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ test("step", function() {
9696
min: 0,
9797
value: 0,
9898
step: 10,
99-
max: 100,
99+
max: 100
100100
});
101101
equals( el.slider("value"), 0 );
102102

@@ -116,7 +116,7 @@ el = $('<div></div>').slider({
116116
min: 0,
117117
value: 0,
118118
step: 20,
119-
max: 100,
119+
max: 100
120120
});
121121
el.slider("value", 0);
122122

0 commit comments

Comments
 (0)