mirror of
https://github.com/spf13/cobra
synced 2025-05-06 05:17:21 +00:00
Issue #107: fix import order
This commit is contained in:
parent
0adfa2d8ca
commit
52d469c091
2 changed files with 2 additions and 2 deletions
|
@ -2,8 +2,8 @@ package cobra
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"io"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
package cobra
|
package cobra
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
|
||||||
"bytes"
|
"bytes"
|
||||||
"strings"
|
"strings"
|
||||||
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestZshCompletion(t *testing.T) {
|
func TestZshCompletion(t *testing.T) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue