aboutsummaryrefslogtreecommitdiff
path: root/auth
diff options
context:
space:
mode:
authorEric Anderson <ejona@google.com>2016-08-11 13:34:38 -0700
committerEric Anderson <ejona@google.com>2016-08-11 13:37:34 -0700
commit55942fbd3787d48e654a567195dc32a465e3a646 (patch)
treec29f8ec5ebba2f6324f1bb5853ea3d8d8536c460 /auth
parent7a33fae8e8cd4d36c4986b0644f13c8d8d2f2d6f (diff)
downloadgrpc-grpc-java-55942fbd3787d48e654a567195dc32a465e3a646.tar.gz
auth: Tests should end in Test, not Tests
We use globs internally to find tests, and weren't finding these two tests. git ls-files confirmed these were the only two files ending in Tests.
Diffstat (limited to 'auth')
-rw-r--r--auth/src/test/java/io/grpc/auth/ClientAuthInterceptorTest.java (renamed from auth/src/test/java/io/grpc/auth/ClientAuthInterceptorTests.java)2
-rw-r--r--auth/src/test/java/io/grpc/auth/GoogleAuthLibraryCallCredentialsTest.java (renamed from auth/src/test/java/io/grpc/auth/GoogleAuthLibraryCallCredentialsTests.java)2
2 files changed, 2 insertions, 2 deletions
diff --git a/auth/src/test/java/io/grpc/auth/ClientAuthInterceptorTests.java b/auth/src/test/java/io/grpc/auth/ClientAuthInterceptorTest.java
index 2a8cd0f97..96ccb4558 100644
--- a/auth/src/test/java/io/grpc/auth/ClientAuthInterceptorTests.java
+++ b/auth/src/test/java/io/grpc/auth/ClientAuthInterceptorTest.java
@@ -76,7 +76,7 @@ import java.util.concurrent.Executor;
*/
@RunWith(JUnit4.class)
@Deprecated
-public class ClientAuthInterceptorTests {
+public class ClientAuthInterceptorTest {
private static final Metadata.Key<String> AUTHORIZATION = Metadata.Key.of("Authorization",
Metadata.ASCII_STRING_MARSHALLER);
diff --git a/auth/src/test/java/io/grpc/auth/GoogleAuthLibraryCallCredentialsTests.java b/auth/src/test/java/io/grpc/auth/GoogleAuthLibraryCallCredentialsTest.java
index 50b3c21e9..118fff8a9 100644
--- a/auth/src/test/java/io/grpc/auth/GoogleAuthLibraryCallCredentialsTests.java
+++ b/auth/src/test/java/io/grpc/auth/GoogleAuthLibraryCallCredentialsTest.java
@@ -85,7 +85,7 @@ import java.util.concurrent.Executor;
* Tests for {@link GoogleAuthLibraryCallCredentials}.
*/
@RunWith(JUnit4.class)
-public class GoogleAuthLibraryCallCredentialsTests {
+public class GoogleAuthLibraryCallCredentialsTest {
private static final Metadata.Key<String> AUTHORIZATION = Metadata.Key.of("Authorization",
Metadata.ASCII_STRING_MARSHALLER);