aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-08-13 18:32:11 +0200
committerMichael Muré <batolettre@gmail.com>2018-08-13 18:39:19 +0200
commit4c850b598939536b2e09ed520e427e94d0026211 (patch)
tree99c08f0e853cca023bcf5e6044964c630ae52299 /tests
parentdf144e727a858ed07e3c9328d91efe052c4781e1 (diff)
downloadgit-bug-4c850b598939536b2e09ed520e427e94d0026211.tar.gz
cleanup go imports
Diffstat (limited to 'tests')
-rw-r--r--tests/bug_actions_test.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/bug_actions_test.go b/tests/bug_actions_test.go
index 96f1bc74..57dcee81 100644
--- a/tests/bug_actions_test.go
+++ b/tests/bug_actions_test.go
@@ -2,13 +2,14 @@ package tests
import (
"fmt"
- "github.com/MichaelMure/git-bug/bug"
- "github.com/MichaelMure/git-bug/bug/operations"
- "github.com/MichaelMure/git-bug/repository"
"io/ioutil"
"log"
"os"
"testing"
+
+ "github.com/MichaelMure/git-bug/bug"
+ "github.com/MichaelMure/git-bug/bug/operations"
+ "github.com/MichaelMure/git-bug/repository"
)
func createRepo(bare bool) *repository.GitRepo {