mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-21 23:20:24 +00:00
simplify test case for quota checking after file replace
This commit is contained in:
parent
89986b9305
commit
34543fd861
1 changed files with 0 additions and 6 deletions
|
@ -637,12 +637,6 @@ func TestQuotaFileReplace(t *testing.T) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Errorf("error getting user: %v", err)
|
t.Errorf("error getting user: %v", err)
|
||||||
}
|
}
|
||||||
if expectedQuotaFiles != user.UsedQuotaFiles {
|
|
||||||
t.Errorf("quota files does not match, expected: %v, actual: %v", expectedQuotaFiles, user.UsedQuotaFiles)
|
|
||||||
}
|
|
||||||
if expectedQuotaSize != user.UsedQuotaSize {
|
|
||||||
t.Errorf("quota size does not match, expected: %v, actual: %v", expectedQuotaSize, user.UsedQuotaSize)
|
|
||||||
}
|
|
||||||
// now replace the same file, the quota must not change
|
// now replace the same file, the quota must not change
|
||||||
err = sftpUploadFile(testFilePath, testFileName, testFileSize, client)
|
err = sftpUploadFile(testFilePath, testFileName, testFileSize, client)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in a new issue