summaryrefslogtreecommitdiff
path: root/tests/trezor
diff options
context:
space:
mode:
authorJakob Unterwurzacher2018-06-25 22:02:05 +0200
committerJakob Unterwurzacher2018-07-01 20:56:22 +0200
commit91de77943fba3cb993aad4e9756e159c4514764a (patch)
tree7cc07a23ec031e93b0c896b4541a94beaed46aee /tests/trezor
parent8e5ca7299a3292cae64418aaf875819c2cca01f5 (diff)
configfile: reduce function name stutter
configfile.LoadConfFile() -> configfile.Load() configfile.CreateConfFile() -> configfile.Create()
Diffstat (limited to 'tests/trezor')
-rw-r--r--tests/trezor/trezor_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/trezor/trezor_test.go b/tests/trezor/trezor_test.go
index 65f1f15..5db56e2 100644
--- a/tests/trezor/trezor_test.go
+++ b/tests/trezor/trezor_test.go
@@ -35,7 +35,7 @@ func TestInitTrezor(t *testing.T) {
// vvvvvvvvvvvvv disable -extpass
dir := test_helpers.InitFS(t, "-trezor", "-extpass", "")
// The freshly created config file should have the Trezor feature flag set.
- _, c, err := configfile.LoadConfFile(dir+"/"+configfile.ConfDefaultName, nil)
+ _, c, err := configfile.Load(dir+"/"+configfile.ConfDefaultName, nil)
if err != nil {
t.Fatal(err)
}