From c5b4662aa895f2c104118ee7bf8105cc6500cbb1 Mon Sep 17 00:00:00 2001
From: Roy Lee <roylee17@gmail.com>
Date: Mon, 2 Aug 2021 00:11:28 -0700
Subject: [PATCH] [lbry] cleanup: fix CI errors

---
 claimtrie/node/manager_test.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/claimtrie/node/manager_test.go b/claimtrie/node/manager_test.go
index 6a335715..2686ab6a 100644
--- a/claimtrie/node/manager_test.go
+++ b/claimtrie/node/manager_test.go
@@ -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)