[lbry] cleanup: fix CI errors

This commit is contained in:
Roy Lee 2021-08-02 00:11:28 -07:00
parent 353d08bb91
commit c5b4662aa8

View file

@ -35,7 +35,7 @@ func TestStringRoundTrip(t *testing.T) {
}
for _, d := range data {
s := string(d)
r.Equal(s, fmt.Sprintf("%s", d))
r.Equal(s, fmt.Sprintf("%s", d)) // nolint
d2 := []byte(s)
r.Equal(len(d), len(s))
r.Equal(d, d2)