From a7bc72540d279047caba0310f3c9d55e5e320c29 Mon Sep 17 00:00:00 2001 From: James Shubin Date: Wed, 19 Dec 2018 12:29:44 -0500 Subject: [PATCH] util: Fix small linting error Woops! --- util/test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/util/test.go b/util/test.go index 889288e5..695fb372 100644 --- a/util/test.go +++ b/util/test.go @@ -42,9 +42,9 @@ func TestDir(suffix string) (string, error) { return testDir, nil } -// TestDir gets the full absolute path to a unique test directory if it exists. -// If the dir does not exist, then this will error, but the path will still be -// returned. This is a utility function that is used in some tests. +// TestDirFull gets the full absolute path to a unique test directory if it +// exists. If the dir does not exist, then this will error, but the path will +// still be returned. This is a utility function that is used in some tests. func TestDirFull() (string, error) { function, filename, _, ok := runtime.Caller(1) if !ok {