Fix lint errors

This commit is contained in:
Alessio 2023-12-26 23:18:34 -06:00
parent 3117a1364c
commit 52172e4e81
3 changed files with 2 additions and 3 deletions

View File

@ -1,12 +1,12 @@
package webserver
import (
"context"
"errors"
"fmt"
"net/http"
"strconv"
"strings"
"context"
"gitlab.com/offline-twitter/twitter_offline_engine/pkg/persistence"
"gitlab.com/offline-twitter/twitter_offline_engine/pkg/scraper"

View File

@ -1,8 +1,8 @@
package webserver
import (
"fmt"
"errors"
"fmt"
"net/http"
"strings"

View File

@ -196,7 +196,6 @@ func TestUserFollowers(t *testing.T) {
assert.Len(cascadia.QueryAll(root, selector(".users-list-container > .user")), 2)
}
func TestUserFollowees(t *testing.T) {
assert := assert.New(t)
require := require.New(t)