Skip to content

Commit

Permalink
Improve the code alignment.
Browse files Browse the repository at this point in the history
  • Loading branch information
armiol committed Sep 27, 2021
1 parent f79e47d commit 3e94593
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ void archived() {
assertMirror.hasStateThat()
.comparingExpectedFieldsOnly()
.isEqualTo(Mirror.newBuilder()
.setLifecycle(LifecycleFlags.newBuilder().setArchived(true))
.setLifecycle(LifecycleFlags.newBuilder()
.setArchived(true))
.buildPartial());
}

Expand All @@ -101,7 +102,8 @@ void deleted() {
assertMirror.hasStateThat()
.comparingExpectedFieldsOnly()
.isEqualTo(Mirror.newBuilder()
.setLifecycle(LifecycleFlags.newBuilder().setDeleted(true))
.setLifecycle(LifecycleFlags.newBuilder()
.setDeleted(true))
.buildPartial());
}

Expand Down Expand Up @@ -146,8 +148,7 @@ void haveNoCatchUp() {
}

private static void assertIse(Executable action) {
assertThrows(IllegalStateException.class,
action);
assertThrows(IllegalStateException.class, action);
}

private static BlackBoxContext context() {
Expand Down

0 comments on commit 3e94593

Please sign in to comment.