aboutsummaryrefslogtreecommitdiff
path: root/context
diff options
context:
space:
mode:
authorEric Gribkoff <ericgribkoff@google.com>2017-08-28 12:11:02 -0700
committerGitHub <noreply@github.com>2017-08-28 12:11:02 -0700
commit812e65a5ca109610422177b6e62eddd8465d01f9 (patch)
tree6af9baf24af01dd64435795641184e839dcc4f1f /context
parent97c625fa792879960ec66078ca0f793e9ec6ec67 (diff)
downloadgrpc-grpc-java-812e65a5ca109610422177b6e62eddd8465d01f9.tar.gz
context: add RunWith annotation
Diffstat (limited to 'context')
-rw-r--r--context/src/test/java/io/grpc/PersistentHashArrayMappedTrieTest.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/context/src/test/java/io/grpc/PersistentHashArrayMappedTrieTest.java b/context/src/test/java/io/grpc/PersistentHashArrayMappedTrieTest.java
index 6c773f383..19bc1ef8f 100644
--- a/context/src/test/java/io/grpc/PersistentHashArrayMappedTrieTest.java
+++ b/context/src/test/java/io/grpc/PersistentHashArrayMappedTrieTest.java
@@ -25,7 +25,10 @@ import io.grpc.PersistentHashArrayMappedTrie.CompressedIndex;
import io.grpc.PersistentHashArrayMappedTrie.Leaf;
import io.grpc.PersistentHashArrayMappedTrie.Node;
import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+@RunWith(JUnit4.class)
public class PersistentHashArrayMappedTrieTest {
@Test
public void leaf_replace() {