summaryrefslogtreecommitdiff
path: root/libpod/util_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'libpod/util_test.go')
-rw-r--r--libpod/util_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/libpod/util_test.go b/libpod/util_test.go
index b3d336d1f..24e5fdfac 100644
--- a/libpod/util_test.go
+++ b/libpod/util_test.go
@@ -1,10 +1,10 @@
package libpod
-
import (
- "testing"
"github.com/stretchr/testify/assert"
+ "testing"
)
+
var (
sliceData = []string{"one", "two", "three", "four"}
)
@@ -16,4 +16,4 @@ func TestStringInSlice(t *testing.T) {
assert.False(t, StringInSlice("five", sliceData))
// string is not in empty slice
assert.False(t, StringInSlice("one", []string{}))
-} \ No newline at end of file
+}