diff options
author | 2017-01-26 20:32:21 +0100 | |
---|---|---|
committer | 2017-01-26 11:32:21 -0800 | |
commit | 10d8a723b116b6ee54d57363c9eaebe9eaa71f4f (patch) | |
tree | 2ecdcfc6756df49eadf79709b313bd0c0542184b /utils_test.go | |
parent | 81051d9e2d5fa34552eccf25801d137b5486c804 (diff) | |
download | sally-10d8a723b116b6ee54d57363c9eaebe9eaa71f4f.tar.gz sally-10d8a723b116b6ee54d57363c9eaebe9eaa71f4f.tar.zst sally-10d8a723b116b6ee54d57363c9eaebe9eaa71f4f.zip |
Add dockerfiles and update makefile (#25)
Diffstat (limited to 'utils_test.go')
-rw-r--r-- | utils_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils_test.go b/utils_test.go index 3894e28..d5a4f89 100644 --- a/utils_test.go +++ b/utils_test.go @@ -27,7 +27,7 @@ func TempFile(t *testing.T, contents string) (path string, clean func()) { } return tmpfile.Name(), func() { - os.Remove(tmpfile.Name()) + _ = os.Remove(tmpfile.Name()) } } |