Skip to content

Commit

Permalink
remove extra semicolon (#1458)
Browse files Browse the repository at this point in the history
  • Loading branch information
sullis authored Feb 5, 2023
1 parent f66940f commit 810835f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ void testGetProtocols() {
@Test
void testGetCiphers() throws Exception {
ClientSslContextFactory factory = new ClientSslContextFactory(new DefaultRegistry());
List<String> ciphers = factory.getCiphers();;
List<String> ciphers = factory.getCiphers();
assertThat(ciphers).isNotEmpty();
assertThat(ciphers).containsNoDuplicates();
}
Expand Down

0 comments on commit 810835f

Please sign in to comment.