mirror of
https://github.com/restic/restic.git
synced 2024-12-23 16:26:11 +00:00
Correct a spelling mistake.
This commit is contained in:
parent
b63de7c798
commit
b5c23695c9
1 changed files with 2 additions and 2 deletions
4
internal/cache/backend_test.go
vendored
4
internal/cache/backend_test.go
vendored
|
@ -71,7 +71,7 @@ func TestBackend(t *testing.T) {
|
||||||
// load data via cache
|
// load data via cache
|
||||||
loadAndCompare(t, wbe, h, data)
|
loadAndCompare(t, wbe, h, data)
|
||||||
if !c.Has(h) {
|
if !c.Has(h) {
|
||||||
t.Errorf("cache dosen't have file after load")
|
t.Errorf("cache doesn't have file after load")
|
||||||
}
|
}
|
||||||
|
|
||||||
// remove via cache
|
// remove via cache
|
||||||
|
@ -83,7 +83,7 @@ func TestBackend(t *testing.T) {
|
||||||
// save via cache
|
// save via cache
|
||||||
save(t, wbe, h, data)
|
save(t, wbe, h, data)
|
||||||
if !c.Has(h) {
|
if !c.Has(h) {
|
||||||
t.Errorf("cache dosen't have file after load")
|
t.Errorf("cache doesn't have file after load")
|
||||||
}
|
}
|
||||||
|
|
||||||
// load data directly from backend
|
// load data directly from backend
|
||||||
|
|
Loading…
Reference in a new issue