Updated Branches: refs/heads/trunk 4a1b4322d -> 9f3a7f8a6
simple naming fixes Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/9f3a7f8a Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/9f3a7f8a Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/9f3a7f8a Branch: refs/heads/trunk Commit: 9f3a7f8a698aaaa9be44bed01aaf526567df8aca Parents: 4a1b432 Author: Dave Brosius <dbros...@mebigfatguy.com> Authored: Mon Nov 25 20:06:42 2013 -0500 Committer: Dave Brosius <dbros...@mebigfatguy.com> Committed: Mon Nov 25 20:06:42 2013 -0500 ---------------------------------------------------------------------- .../unit/org/apache/cassandra/service/QueryPagerTest.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/9f3a7f8a/test/unit/org/apache/cassandra/service/QueryPagerTest.java ---------------------------------------------------------------------- diff --git a/test/unit/org/apache/cassandra/service/QueryPagerTest.java b/test/unit/org/apache/cassandra/service/QueryPagerTest.java index f395cf4..6239ba0 100644 --- a/test/unit/org/apache/cassandra/service/QueryPagerTest.java +++ b/test/unit/org/apache/cassandra/service/QueryPagerTest.java @@ -155,7 +155,7 @@ public class QueryPagerTest extends SchemaLoader } @Test - public void NamesQueryTest() throws Exception + public void namesQueryTest() throws Exception { QueryPager pager = QueryPagers.localPager(namesQuery("k0", "c1", "c5", "c7", "c8")); @@ -168,7 +168,7 @@ public class QueryPagerTest extends SchemaLoader } @Test - public void SliceQueryTest() throws Exception + public void sliceQueryTest() throws Exception { QueryPager pager = QueryPagers.localPager(sliceQuery("k0", "c1", "c8", 10)); @@ -218,7 +218,7 @@ public class QueryPagerTest extends SchemaLoader } @Test - public void MultiQueryTest() throws Exception + public void multiQueryTest() throws Exception { QueryPager pager = QueryPagers.localPager(new Pageable.ReadCommands(new ArrayList<ReadCommand>() {{ add(sliceQuery("k1", "c2", "c6", 10)); @@ -247,7 +247,7 @@ public class QueryPagerTest extends SchemaLoader } @Test - public void RangeNamesQueryTest() throws Exception + public void rangeNamesQueryTest() throws Exception { QueryPager pager = QueryPagers.localPager(rangeNamesQuery(range("k0", "k5"), 100, "c1", "c4", "c8")); @@ -269,7 +269,7 @@ public class QueryPagerTest extends SchemaLoader } @Test - public void RangeSliceQueryTest() throws Exception + public void rangeSliceQueryTest() throws Exception { QueryPager pager = QueryPagers.localPager(rangeSliceQuery(range("k1", "k5"), 100, "c1", "c7"));