Skip to content

Commit

Permalink
fix(lint): fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
hannahhoward committed Jul 1, 2020
1 parent f502b2f commit 7893d4a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions responsemanager/responsemanager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -281,9 +281,8 @@ func TestCancellationViaCommand(t *testing.T) {
require.Equal(t, td.requestID, sentResponse.requestID, "has incorrect response id")

// send a cancellation
responseManager.CancelResponse(td.p, td.requestID)

responseManager.synchronize()
err := responseManager.CancelResponse(td.p, td.requestID)
require.NoError(t, err)

// at this point we should receive at most one more block, then traversal
// should complete
Expand Down

0 comments on commit 7893d4a

Please sign in to comment.