You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by ja...@apache.org on 2014/06/24 21:35:58 UTC

git commit: ninja fix busted test

Repository: cassandra
Updated Branches:
  refs/heads/cassandra-2.1 5b8ac8cbc -> a224e583a


ninja fix busted test


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/a224e583
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/a224e583
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/a224e583

Branch: refs/heads/cassandra-2.1
Commit: a224e583ab2fcda98b0428ab0c41d6bb6e5ee09a
Parents: 5b8ac8c
Author: Jake Luciani <ja...@apache.org>
Authored: Tue Jun 24 15:35:46 2014 -0400
Committer: Jake Luciani <ja...@apache.org>
Committed: Tue Jun 24 15:35:46 2014 -0400

----------------------------------------------------------------------
 test/unit/org/apache/cassandra/cql3/DeleteTest.java | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/a224e583/test/unit/org/apache/cassandra/cql3/DeleteTest.java
----------------------------------------------------------------------
diff --git a/test/unit/org/apache/cassandra/cql3/DeleteTest.java b/test/unit/org/apache/cassandra/cql3/DeleteTest.java
index d2dbc79..7782f12 100644
--- a/test/unit/org/apache/cassandra/cql3/DeleteTest.java
+++ b/test/unit/org/apache/cassandra/cql3/DeleteTest.java
@@ -33,7 +33,7 @@ import org.junit.Test;
 
 import java.io.IOException;
 
-public class DeleteTest
+public class DeleteTest extends SchemaLoader
 {
     private static EmbeddedCassandraService cassandra;
 
@@ -51,6 +51,8 @@ public class DeleteTest
     @BeforeClass()
     public static void setup() throws ConfigurationException, IOException
     {
+        Schema.instance.clear();
+
         cassandra = new EmbeddedCassandraService();
         cassandra.start();