Skip to content

Commit

Permalink
Fix nullability assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
realityforge committed Sep 16, 2021
1 parent 9e4228c commit 3047105
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/test/java/replicant/MessageResponseTest.java
Expand Up @@ -53,7 +53,7 @@ public void toStatus()

final DataLoadStatus status = action.toStatus();

assertEquals( status.getRequestId(), null );
assertNull( status.getRequestId() );
assertEquals( status.getChannelAddCount(), 2 );
assertEquals( status.getChannelUpdateCount(), 1 );
assertEquals( status.getChannelRemoveCount(), 3 );
Expand Down

0 comments on commit 3047105

Please sign in to comment.