From 8123290eb6a09e61e9aeaa1cac525eee97098b7a Mon Sep 17 00:00:00 2001 From: jgfrm Date: Thu, 9 Feb 2017 17:32:45 +0100 Subject: [PATCH] added ioutil import --- src/cmds/restic/integration_helpers_unix_test.go | 1 + src/cmds/restic/integration_helpers_windows_test.go | 1 + 2 files changed, 2 insertions(+) diff --git a/src/cmds/restic/integration_helpers_unix_test.go b/src/cmds/restic/integration_helpers_unix_test.go index b8ef4bcdd..b0d6f69a7 100644 --- a/src/cmds/restic/integration_helpers_unix_test.go +++ b/src/cmds/restic/integration_helpers_unix_test.go @@ -6,6 +6,7 @@ import ( "fmt" "os" "syscall" + "io/ioutil" ) func (e *dirEntry) equals(other *dirEntry) bool { diff --git a/src/cmds/restic/integration_helpers_windows_test.go b/src/cmds/restic/integration_helpers_windows_test.go index a3d1ec3f6..58afb0e34 100644 --- a/src/cmds/restic/integration_helpers_windows_test.go +++ b/src/cmds/restic/integration_helpers_windows_test.go @@ -5,6 +5,7 @@ package main import ( "fmt" "os" + "io/ioutil" ) func (e *dirEntry) equals(other *dirEntry) bool {