revid: removed unnecessary assertion

This commit is contained in:
Saxon 2019-03-30 10:08:27 +10:30
parent 86971ca055
commit afe2948cf7
1 changed files with 1 additions and 1 deletions

View File

@ -249,7 +249,7 @@ func TestResetEncoderSenderSetup(t *testing.T) {
ok := false
for _, dst := range senders {
// Get type of sender.
senderType := fmt.Sprintf("%T", dst.(loadSender))
senderType := fmt.Sprintf("%T", dst)
// If it's one we want, indicate.
if senderType == expectDst {