Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Whitehead <matthew1001@gmail.com>
  • Loading branch information
matthew1001 committed Oct 8, 2024
1 parent 8510daf commit 2c2b96a
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ public void stopsMining() {

@Test
public void restartsMiningAfterStop() {
// Shouldn't stop without first starting
assertThat(bftMiningCoordinator.isMining()).isFalse();
bftMiningCoordinator.stop();
verify(bftProcessor, never()).stop();
Expand All @@ -101,7 +100,7 @@ public void restartsMiningAfterStop() {
bftMiningCoordinator.start();
assertThat(bftMiningCoordinator.isMining()).isTrue();

// BFT process should be started once for every time the mining
// BFT processor should be started once for every time the mining
// coordinator is restarted
verify(bftProcessor, times(2)).start();
}
Expand Down

0 comments on commit 2c2b96a

Please sign in to comment.