Skip to content

Commit f9366ab

Browse files
committed
GitHubOAuthConfigTest: Reformat the code using google-java-format
Change-Id: I29cfbd4dc165d2f0bdd5f4601db2e858ca911201
1 parent ab04115 commit f9366ab

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

github-oauth/src/test/java/com/googlesource/gerrit/plugins/github/oauth/GitHubOAuthConfigTest.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ public void shouldReadASpecificKeyConfig() {
7373

7474
assertEquals(githubOAuthConfig().getCurrentKeyConfig().isCurrent(), true);
7575
assertEquals(githubOAuthConfig().getCurrentKeyConfig().getCipherAlgorithm(), cipherAlgorithm);
76-
assertEquals(githubOAuthConfig().getCurrentKeyConfig().getSecretKeyAlgorithm(), secretKeyAlgorithm);
76+
assertEquals(
77+
githubOAuthConfig().getCurrentKeyConfig().getSecretKeyAlgorithm(), secretKeyAlgorithm);
7778
assertEquals(githubOAuthConfig().getCurrentKeyConfig().getKeyId(), keySubsection);
7879
}
7980

@@ -103,7 +104,8 @@ public void shouldReadMultipleKeyConfigs() {
103104
CONF_KEY_SECTION, someOtherKeyConfig, PASSWORD_DEVICE_CONFIG_LABEL, testPasswordDevice);
104105

105106
assertEquals(githubOAuthConfig().getKeyConfig(currentKeyConfig).getKeyId(), currentKeyConfig);
106-
assertEquals(githubOAuthConfig().getKeyConfig(someOtherKeyConfig).getKeyId(), someOtherKeyConfig);
107+
assertEquals(
108+
githubOAuthConfig().getKeyConfig(someOtherKeyConfig).getKeyId(), someOtherKeyConfig);
107109
}
108110

109111
@Test

0 commit comments

Comments
 (0)