diff options
author | Jakob Unterwurzacher | 2021-06-21 11:53:33 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2021-06-21 11:53:33 +0200 |
commit | 2efef1e270a0e374c479326ab2c296b5e9fdc34d (patch) | |
tree | 62a0d4dc10e949d71510b5c7f7b8731e044b9221 /tests/test_helpers/helpers.go | |
parent | e244b514913a31293eac1dc728f5b1026ab84b98 (diff) |
nametransform: delete NameTransformer interface
Useless layer of indirection.
Diffstat (limited to 'tests/test_helpers/helpers.go')
-rw-r--r-- | tests/test_helpers/helpers.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_helpers/helpers.go b/tests/test_helpers/helpers.go index b98c0f7..5bc1298 100644 --- a/tests/test_helpers/helpers.go +++ b/tests/test_helpers/helpers.go @@ -141,6 +141,8 @@ func isExt4(path string) bool { // gocryptfs -q -init -extpass "echo test" -scryptn=10 $extraArgs $cipherdir // // It returns cipherdir without a trailing slash. +// +// If t is set, t.Fatal() is called on error, log.Panic() otherwise. func InitFS(t *testing.T, extraArgs ...string) string { prefix := "x." if t != nil { |