aboutsummaryrefslogtreecommitdiff
path: root/backup/backup_test.go
diff options
context:
space:
mode:
authorLaria Carolin Chabowski <laria@laria.me>2017-08-08 08:05:52 +0200
committerLaria Carolin Chabowski <laria@laria.me>2017-09-26 21:35:40 +0200
commitbab0697f0e8a98cfa28c7527ee616e954c7afe91 (patch)
tree33c602bf39c4707ab4826ed6ba25c403cb07fe70 /backup/backup_test.go
parenta845956238e6a41479a7abd59f5c39e71f3f85f4 (diff)
downloadpetrific-bab0697f0e8a98cfa28c7527ee616e954c7afe91.tar.gz
petrific-bab0697f0e8a98cfa28c7527ee616e954c7afe91.tar.bz2
petrific-bab0697f0e8a98cfa28c7527ee616e954c7afe91.zip
Add OpenWritable to fs interfaces
Diffstat (limited to 'backup/backup_test.go')
-rw-r--r--backup/backup_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/backup/backup_test.go b/backup/backup_test.go
index 67fbb6a..da14117 100644
--- a/backup/backup_test.go
+++ b/backup/backup_test.go
@@ -49,13 +49,13 @@ func mkfile(t *testing.T, d fs.Dir, name string, exec bool, content []byte) {
t.Fatalf("Could not create file %s: %s", name, err)
}
- rwc, err := f.Open()
+ wc, err := f.OpenWritable()
if err != nil {
t.Fatalf("Could not create file %s: %s", name, err)
}
- defer rwc.Close()
+ defer wc.Close()
- if _, err := rwc.Write(content); err != nil {
+ if _, err := wc.Write(content); err != nil {
t.Fatalf("Could not create file %s: %s", name, err)
}
}