mirror of
https://github.com/google/nomulus.git
synced 2025-05-17 09:57:17 +02:00
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
This commit is contained in:
parent
acc7d19106
commit
093716c7d3
1 changed files with 3 additions and 2 deletions
|
@ -27,9 +27,10 @@ public class RegistryConfigTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void test_clientSecretFilename() {
|
public void test_clientSecretFilename() {
|
||||||
RegistryConfigSettings config = YamlUtils.getConfigSettings();
|
RegistryConfigSettings unused = YamlUtils.getConfigSettings();
|
||||||
// Verify that we're pulling this from the default.
|
// Verify that we're pulling this from the default.
|
||||||
assertThat(RegistryConfig.getClientSecretFilename()).isEqualTo(
|
assertThat(RegistryConfig.getClientSecretFilename()).isEqualTo(
|
||||||
"/google/registry/tools/resources/client_secret.json");
|
"/google/registry/tools/resources/client_secret.json");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue