Merge pull request #3992 from MichaelEischer/err-on-invalid-compression
Return error if RESTIC_COMPRESSION env variable is invalid
This commit is contained in:
commit
8dd95b710e
2 changed files with 17 additions and 3 deletions
|
@ -681,3 +681,11 @@ func testStreamPack(t *testing.T, version uint) {
|
|||
}
|
||||
})
|
||||
}
|
||||
|
||||
func TestInvalidCompression(t *testing.T) {
|
||||
var comp repository.CompressionMode
|
||||
err := comp.Set("nope")
|
||||
rtest.Assert(t, err != nil, "missing error")
|
||||
_, err = repository.New(nil, repository.Options{Compression: comp})
|
||||
rtest.Assert(t, err != nil, "missing error")
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue