Skip to content

Commit

Permalink
Remove flaky redundant unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
jkschneider committed Oct 8, 2023
1 parent 883a2e0 commit c7387be
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,4 @@ void encodeDecode() {
RemoteException decoded = RemoteException.decode(remote.encode());
assertThat(decoded).isEqualTo(remote);
}

@Test
void sendOverProgressBar() {
try (RemoteProgressBarReceiver progressBar = new RemoteProgressBarReceiver(new NoopProgressBar());
RemoteProgressBarSender remoteProgressBar = new RemoteProgressBarSender(progressBar.getPort())) {
remoteProgressBar.throwRemote(remote);
}
}
}

0 comments on commit c7387be

Please sign in to comment.