Skip to content

Commit

Permalink
try to unflake DocLevelCollectTest
Browse files Browse the repository at this point in the history
  • Loading branch information
msbt committed Mar 3, 2015
1 parent 79c9760 commit 0704bd1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
1 change: 0 additions & 1 deletion sql/src/main/java/io/crate/executor/Task.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import com.google.common.util.concurrent.ListenableFuture;

import java.util.List;
import java.util.UUID;

/**
* A task gets executed as part of or in the context of a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
import org.apache.lucene.util.BytesRef;
import org.elasticsearch.cluster.routing.ShardRouting;
import org.hamcrest.core.IsNull;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;

Expand Down Expand Up @@ -113,6 +114,13 @@ public void prepare() {
refresh();
}

@After
public void cleanUp() {
operation = null;
functions = null;
docSchemaInfo = null;
}

private Routing routing(String table) {
Map<String, Map<String, Set<Integer>>> locations = new HashMap<>();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
import org.elasticsearch.index.mapper.FieldMapper;
import org.junit.Test;

import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.core.Is.is;

public class FloatColumnReferenceTest extends DocLevelExpressionsTest {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@

public class CrateSingleNodeTest extends ElasticsearchSingleNodeTest {


@Override
@After
public void tearDown() throws Exception {
Expand Down

0 comments on commit 0704bd1

Please sign in to comment.