aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Moyer <smoyer1@selesy.com>2022-06-07 08:01:19 -0400
committerSteve Moyer <smoyer1@selesy.com>2022-06-07 08:01:19 -0400
commit941f5b3fc362be388dd3bd979799dd296daec243 (patch)
tree71254468151b32fc3b9c544bda39f4e133e64b6c
parent6ec7d67ea14d236c65b3d93bb4c4501432696659 (diff)
downloadgit-bug-941f5b3fc362be388dd3bd979799dd296daec243.tar.gz
chore(808): rearrange imports to git-bug convention
-rw-r--r--commands/env_test.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/commands/env_test.go b/commands/env_test.go
index 1a5922a9..346024ab 100644
--- a/commands/env_test.go
+++ b/commands/env_test.go
@@ -8,10 +8,11 @@ import (
"os"
"testing"
- "github.com/MichaelMure/git-bug/commands"
- "github.com/MichaelMure/git-bug/repository"
"github.com/spf13/cobra"
"github.com/stretchr/testify/require"
+
+ "github.com/MichaelMure/git-bug/commands"
+ "github.com/MichaelMure/git-bug/repository"
)
var update = flag.Bool("update", false, "pass -update to the test runner to update golden files")