aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBogdan Drutu <bdrutu@google.com>2017-07-07 16:35:08 -0700
committerGitHub <noreply@github.com>2017-07-07 16:35:08 -0700
commitee9518de734fcc04270e83045554316361a6f7f0 (patch)
tree16779f75bf6be1d757b2e0ae9ed9d054054dbb39
parentd27cbb4fc6293bb5a4adeb705ce74273a3dc3219 (diff)
downloadopencensus-java-ee9518de734fcc04270e83045554316361a6f7f0.tar.gz
Fix Functions tests. (#437)
-rw-r--r--api/src/test/java/io/opencensus/common/FunctionsTest.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/api/src/test/java/io/opencensus/common/FunctionsTest.java b/api/src/test/java/io/opencensus/common/FunctionsTest.java
index 1c8df819..2ab1ebca 100644
--- a/api/src/test/java/io/opencensus/common/FunctionsTest.java
+++ b/api/src/test/java/io/opencensus/common/FunctionsTest.java
@@ -18,8 +18,11 @@ import static com.google.common.truth.Truth.assertThat;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
/** Tests for {@link Functions}. */
+@RunWith(JUnit4.class)
public class FunctionsTest {
@Rule public ExpectedException thrown = ExpectedException.none();