Repository: cassandra Updated Branches: refs/heads/cassandra-3.0 4cf97f424 -> 0ad1e0aaf
Ninja follow-on to 10115 - fix LeveledCompactionStrategyTest Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/ab628761 Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/ab628761 Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/ab628761 Branch: refs/heads/cassandra-3.0 Commit: ab6287612e8c7d8b944d3833ca90bd8b887b9709 Parents: cd46ca1 Author: Joshua McKenzie <[email protected]> Authored: Fri Aug 21 10:52:11 2015 -0400 Committer: Joshua McKenzie <[email protected]> Committed: Fri Aug 21 10:52:11 2015 -0400 ---------------------------------------------------------------------- .../db/compaction/LeveledCompactionStrategyTest.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/ab628761/test/unit/org/apache/cassandra/db/compaction/LeveledCompactionStrategyTest.java ---------------------------------------------------------------------- diff --git a/test/unit/org/apache/cassandra/db/compaction/LeveledCompactionStrategyTest.java b/test/unit/org/apache/cassandra/db/compaction/LeveledCompactionStrategyTest.java index ccfc6ab..03aaf03 100644 --- a/test/unit/org/apache/cassandra/db/compaction/LeveledCompactionStrategyTest.java +++ b/test/unit/org/apache/cassandra/db/compaction/LeveledCompactionStrategyTest.java @@ -172,8 +172,8 @@ public class LeveledCompactionStrategyTest ByteBuffer value = ByteBuffer.wrap(b); // 100 KB value, make it easy to have multiple files // Enough data to have a level 1 and 2 - int rows = 20; - int columns = 10; + int rows = 40; + int columns = 20; // Adds enough data to trigger multiple sstable per level for (int r = 0; r < rows; r++) @@ -258,8 +258,8 @@ public class LeveledCompactionStrategyTest ByteBuffer value = ByteBuffer.wrap(new byte[100 * 1024]); // 100 KB value, make it easy to have multiple files // Enough data to have a level 1 and 2 - int rows = 20; - int columns = 10; + int rows = 40; + int columns = 20; // Adds enough data to trigger multiple sstable per level for (int r = 0; r < rows; r++) @@ -306,8 +306,8 @@ public class LeveledCompactionStrategyTest ByteBuffer value = ByteBuffer.wrap(b); // 100 KB value, make it easy to have multiple files // Enough data to have a level 1 and 2 - int rows = 20; - int columns = 10; + int rows = 40; + int columns = 20; // Adds enough data to trigger multiple sstable per level for (int r = 0; r < rows; r++)
