Skip to content

Commit

Permalink
nt: fix unused write warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Nicola Murino <[email protected]>
  • Loading branch information
drakkan committed Jul 3, 2024
1 parent 54bc3ea commit 58de410
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 8 deletions.
2 changes: 0 additions & 2 deletions internal/common/defender_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -448,8 +448,6 @@ func TestDefenderDelay(t *testing.T) {
},
},
},
banned: make(map[string]time.Time),
hosts: make(map[string]hostScore),
}
startTime := time.Now()
d.DelayLogin(nil)
Expand Down
1 change: 0 additions & 1 deletion internal/ftpd/internal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -885,7 +885,6 @@ func TestTransferErrors(t *testing.T) {
fs := newMockOsFs(nil, nil, false, connID, user.GetHomeDir())
connection := &Connection{
BaseConnection: common.NewBaseConnection(connID, common.ProtocolFTP, "", "", user),
clientContext: mockCC,
}
baseTransfer := common.NewBaseTransfer(file, connection.BaseConnection, nil, file.Name(), file.Name(), testfile,
common.TransferDownload, 0, 0, 0, 0, false, fs, dataprovider.TransferQuota{})
Expand Down
7 changes: 3 additions & 4 deletions internal/httpd/httpd_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12536,8 +12536,7 @@ func TestStartQuotaScanNonExistentFolderMock(t *testing.T) {
token, err := getJWTAPITokenFromTestServer(defaultTokenAuthUser, defaultTokenAuthPass)
assert.NoError(t, err)
folder := vfs.BaseVirtualFolder{
MappedPath: os.TempDir(),
Name: "afolder",
Name: "afolder",
}
req, _ := http.NewRequest(http.MethodPost, path.Join(quotasBasePath, "folders", folder.Name, "scan"), nil)
setBearerForReq(req, token)
Expand Down Expand Up @@ -23356,7 +23355,6 @@ func TestWebEventAction(t *testing.T) {
csrfToken, err := getCSRFTokenFromInternalPageMock(webAdminEventActionPath, webToken)
assert.NoError(t, err)
action := dataprovider.BaseEventAction{
ID: 81,
Name: "web_action_http",
Description: "http web action",
Type: dataprovider.ActionTypeHTTP,
Expand Down Expand Up @@ -24289,7 +24287,8 @@ func TestWebIPListEntries(t *testing.T) {
form.Set("protocols", "a")
form.Add("protocols", "1")
form.Add("protocols", "4")
req, err = http.NewRequest(http.MethodPost, webIPListPath+"/2", bytes.NewBuffer([]byte(form.Encode())))
req, err = http.NewRequest(http.MethodPost, webIPListPath+"/"+strconv.Itoa(int(entry.Type)),
bytes.NewBuffer([]byte(form.Encode())))
assert.NoError(t, err)
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
setJWTCookieForReq(req, webToken)
Expand Down
1 change: 0 additions & 1 deletion internal/httpd/internal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2769,7 +2769,6 @@ func TestHTTPDFile(t *testing.T) {
user.Permissions["/"] = []string{dataprovider.PermAny}
connection := &Connection{
BaseConnection: common.NewBaseConnection(xid.New().String(), common.ProtocolHTTP, "", "", user),
request: nil,
}

fs, err := user.GetFilesystem("")
Expand Down

0 comments on commit 58de410

Please sign in to comment.