Skip to content

Commit

Permalink
Run formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
bmiddaugh committed May 29, 2024
1 parent 9a25dd5 commit 955d641
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/com/jcraft/jsch/OpenSSHConfigTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ private void assertUserEquals(OpenSSHConfig openSSHConfig, String host, String e
final ConfigRepository.Config config = openSSHConfig.getConfig(host);
assertNotNull(config);
String actual = config.getUser();
assertEquals(expected, actual,
String.format(Locale.ROOT, "Expected user for host %s to be %s, but was %s", host, expected, actual));
assertEquals(expected, actual, String.format(Locale.ROOT,
"Expected user for host %s to be %s, but was %s", host, expected, actual));
}
}

0 comments on commit 955d641

Please sign in to comment.