aboutsummaryrefslogtreecommitdiffstats
path: root/tests/init.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/init.go')
-rw-r--r--tests/init.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/init.go b/tests/init.go
index c5a05512b..5112b274d 100644
--- a/tests/init.go
+++ b/tests/init.go
@@ -67,7 +67,7 @@ func init() {
func readJson(reader io.Reader, value interface{}) error {
data, err := ioutil.ReadAll(reader)
if err != nil {
- return fmt.Errorf("Error reading JSON file", err.Error())
+ return fmt.Errorf("error reading JSON file: %v", err)
}
if err = json.Unmarshal(data, &value); err != nil {
if syntaxerr, ok := err.(*json.SyntaxError); ok {