Skip to content

Commit

Permalink
adjusted tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jsteemann committed Jun 18, 2015
1 parent 1259304 commit cc45a1a
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions js/common/tests/shell-simple-query.js
Original file line number Diff line number Diff line change
Expand Up @@ -642,15 +642,6 @@ function SimpleQueryAllSkipLimitSuite () {

n = collection.all().limit(9).skip(1).limit(7).toArray().map(num);
assertEqual(n, numbers.slice(1, 8));

n = collection.all().skip(-5).limit(3).toArray().map(num);
assertEqual(n, numbers.slice(5, 8));

n = collection.all().skip(-8).limit(7).skip(1).limit(4).toArray().map(num);
assertEqual(n, numbers.slice(3, 7));

n = collection.all().skip(-10).limit(9).skip(1).limit(7).toArray().map(num);
assertEqual(n, numbers.slice(1, 8));
}
};
}
Expand Down

0 comments on commit cc45a1a

Please sign in to comment.