Skip to content

Commit

Permalink
fix case of log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
khyatimahendru committed Jan 7, 2025
1 parent d4a38ed commit 3ac7f1e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ private void familyAddr(String family) {
HashMap<String, FamilyLocalnetState> families = deviceState.localnet.families;
waitUntil(format("device state localnet family %s is available", family),
() -> families.containsKey(family) ? null
: format("Because family %s not found in device state localnet family set: %s", family,
: format("because family %s not found in device state localnet family set: %s", family,
CSV_JOINER.join(families.keySet())));
String actual = families.get(family).addr;
checkThat(format("family %s address matches", family), () -> expected.equals(actual));
Expand Down

0 comments on commit 3ac7f1e

Please sign in to comment.