chore(808): rearrange imports to git-bug convention

Steve Moyer created

Change summary

commands/env_test.go | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)

Detailed changes

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")