xds: fix missing @RunWith annotation. (#7245)

This commit is contained in:
Ran 2020-07-23 12:58:24 -07:00 committed by GitHub
parent c60f5ff95b
commit 61fd6d3ecd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -30,8 +30,11 @@ import java.io.IOException;
import java.util.Collections;
import java.util.Map;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/** Tests for {@link ClusterManagerLoadBalancerProvider}. */
@RunWith(JUnit4.class)
public class ClusterManagerLoadBalancerProviderTest {
@Test