diff options
| author | Jakob Unterwurzacher | 2018-06-25 22:02:05 +0200 | 
|---|---|---|
| committer | Jakob Unterwurzacher | 2018-07-01 20:56:22 +0200 | 
| commit | 91de77943fba3cb993aad4e9756e159c4514764a (patch) | |
| tree | 7cc07a23ec031e93b0c896b4541a94beaed46aee /tests/plaintextnames | |
| parent | 8e5ca7299a3292cae64418aaf875819c2cca01f5 (diff) | |
configfile: reduce function name stutter
configfile.LoadConfFile()   -> configfile.Load()
configfile.CreateConfFile() -> configfile.Create()
Diffstat (limited to 'tests/plaintextnames')
| -rw-r--r-- | tests/plaintextnames/plaintextnames_test.go | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/tests/plaintextnames/plaintextnames_test.go b/tests/plaintextnames/plaintextnames_test.go index 6b513aa..121a4a0 100644 --- a/tests/plaintextnames/plaintextnames_test.go +++ b/tests/plaintextnames/plaintextnames_test.go @@ -29,7 +29,7 @@ func TestMain(m *testing.M) {  // Only the PlaintextNames feature flag should be set  func TestFlags(t *testing.T) { -	_, cf, err := configfile.LoadConfFile(cDir+"/gocryptfs.conf", testPw) +	_, cf, err := configfile.Load(cDir+"/gocryptfs.conf", testPw)  	if err != nil {  		t.Fatal(err)  	} | 
