From 093716c7d3db94f13eb8b872135facec6737ec23 Mon Sep 17 00:00:00 2001 From: mmuller Date: Wed, 22 Feb 2017 08:25:53 -0800 Subject: [PATCH] Fix unused variable and missing end newline Fix a few diffs lost in pre-submission testing shuffle. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=148222135 --- javatests/google/registry/config/RegistryConfigTest.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/javatests/google/registry/config/RegistryConfigTest.java b/javatests/google/registry/config/RegistryConfigTest.java index cb33c38d8..b1dcb24e6 100644 --- a/javatests/google/registry/config/RegistryConfigTest.java +++ b/javatests/google/registry/config/RegistryConfigTest.java @@ -27,9 +27,10 @@ public class RegistryConfigTest { @Test public void test_clientSecretFilename() { - RegistryConfigSettings config = YamlUtils.getConfigSettings(); + RegistryConfigSettings unused = YamlUtils.getConfigSettings(); // Verify that we're pulling this from the default. assertThat(RegistryConfig.getClientSecretFilename()).isEqualTo( "/google/registry/tools/resources/client_secret.json"); } -} \ No newline at end of file +} +