Skip to content

Commit d16cd00

Browse files
committed
jshint fixes (tests)
1 parent 08bba1f commit d16cd00

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

modules/scroll/test/ScrollerSpec.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ describe('uiScroll', function () {
422422
function (viewport, scope) {
423423

424424
scope.adapter.applyUpdates(
425-
function (item, scope) {
425+
function (item) {
426426
if (item === 'one')
427427
return [];
428428
}
@@ -451,7 +451,7 @@ describe('uiScroll', function () {
451451
function (viewport, scope) {
452452

453453
scope.adapter.applyUpdates(
454-
function (item, scope) {
454+
function (item) {
455455
if (item === 'two')
456456
return [];
457457
}
@@ -480,7 +480,7 @@ describe('uiScroll', function () {
480480
function (viewport, scope) {
481481

482482
scope.adapter.applyUpdates(
483-
function (item, scope) {
483+
function (item) {
484484
if (item === 'three')
485485
return [];
486486
}
@@ -509,7 +509,7 @@ describe('uiScroll', function () {
509509
function (viewport, scope, $timeout) {
510510

511511
scope.adapter.applyUpdates(
512-
function (item, scope) {
512+
function (item) {
513513
if (item === 'one')
514514
return ['before one', item];
515515
}
@@ -546,7 +546,7 @@ describe('uiScroll', function () {
546546
function (viewport, scope) {
547547

548548
scope.adapter.applyUpdates(
549-
function (item, scope) {
549+
function (item) {
550550
if (item === 'one')
551551
return [item, 'after one'];
552552
}
@@ -583,7 +583,7 @@ describe('uiScroll', function () {
583583
function (viewport, scope) {
584584

585585
scope.adapter.applyUpdates(
586-
function (item, scope) {
586+
function (item) {
587587
if (item === 'two')
588588
return ['before two', item];
589589
}
@@ -620,7 +620,7 @@ describe('uiScroll', function () {
620620
function (viewport, scope) {
621621

622622
scope.adapter.applyUpdates(
623-
function (item, scope) {
623+
function (item) {
624624
if (item === 'three')
625625
return [item, 'after three'];
626626
}

0 commit comments

Comments
 (0)