Skip to content

Commit

Permalink
Fix another test that was missed, where generics interact badly with …
Browse files Browse the repository at this point in the history
…varargs
  • Loading branch information
chrisvest committed May 30, 2017
1 parent ac3ff9d commit bb628c7
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -38,7 +38,8 @@ public void shouldEncodeAndDecodePullRequestMessage()

// when
channel.writeOutbound( sent );
channel.writeInbound( channel.readOutbound() );
Object message = channel.readOutbound();
channel.writeInbound( message );

// then
TxStreamFinishedResponse received = channel.readInbound();
Expand Down

0 comments on commit bb628c7

Please sign in to comment.