From 52d469c0916e373c3501cd944b44bb9241c61b85 Mon Sep 17 00:00:00 2001 From: bpicode Date: Tue, 25 Jul 2017 00:25:38 +0200 Subject: [PATCH] Issue #107: fix import order --- zsh_completions.go | 2 +- zsh_completions_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/zsh_completions.go b/zsh_completions.go index e5d7e2b2..d73cddfe 100644 --- a/zsh_completions.go +++ b/zsh_completions.go @@ -2,8 +2,8 @@ package cobra import ( "bytes" - "io" "fmt" + "io" "strings" ) diff --git a/zsh_completions_test.go b/zsh_completions_test.go index 8b3c08c5..08b85159 100644 --- a/zsh_completions_test.go +++ b/zsh_completions_test.go @@ -1,9 +1,9 @@ package cobra import ( - "testing" "bytes" "strings" + "testing" ) func TestZshCompletion(t *testing.T) {