Skip to content

Commit

Permalink
Fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
ethantkoenig committed Jun 12, 2017
1 parent b5d2780 commit 505955a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion models/git_diff_test.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package models

import (
dmp "github.com/sergi/go-diff/diffmatchpatch"
"html/template"
"testing"

dmp "github.com/sergi/go-diff/diffmatchpatch"
)

func assertEqual(t *testing.T, s1 string, s2 template.HTML) {
Expand Down
1 change: 1 addition & 0 deletions models/issue_indexer.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import (
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/setting"
"code.gitea.io/gitea/modules/util"

"github.com/blevesearch/bleve"
"github.com/blevesearch/bleve/analysis/analyzer/simple"
"github.com/blevesearch/bleve/search/query"
Expand Down
4 changes: 2 additions & 2 deletions models/issue_milestone_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
package models

import (
"sort"
"testing"
"time"

api "code.gitea.io/sdk/gitea"

"github.com/stretchr/testify/assert"
"sort"
"time"
)

func TestMilestone_State(t *testing.T) {
Expand Down

0 comments on commit 505955a

Please sign in to comment.