mirror of
https://github.com/Jguer/yay
synced 2024-10-31 04:12:51 +00:00
chore(style): run gofumpt on packages
This commit is contained in:
parent
827adab4b8
commit
50c0ece9a7
2 changed files with 19 additions and 14 deletions
|
@ -6,8 +6,10 @@ import (
|
||||||
alpm "github.com/Jguer/go-alpm/v2"
|
alpm "github.com/Jguer/go-alpm/v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
type IPackage = alpm.IPackage
|
type (
|
||||||
type Depend = alpm.Depend
|
IPackage = alpm.IPackage
|
||||||
|
Depend = alpm.Depend
|
||||||
|
)
|
||||||
|
|
||||||
func VerCmp(a, b string) int {
|
func VerCmp(a, b string) int {
|
||||||
return alpm.VerCmp(a, b)
|
return alpm.VerCmp(a, b)
|
||||||
|
|
|
@ -203,7 +203,9 @@ func Test_upDevel(t *testing.T) {
|
||||||
"hello4": {Version: "2.0.0", Name: "hello4"},
|
"hello4": {Version: "2.0.0", Name: "hello4"},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
want: UpSlice{Repos: []string{"devel"}, Up: []Upgrade{{
|
want: UpSlice{
|
||||||
|
Repos: []string{"devel"}, Up: []Upgrade{
|
||||||
|
{
|
||||||
Name: "hello",
|
Name: "hello",
|
||||||
Repository: "devel",
|
Repository: "devel",
|
||||||
LocalVersion: "2.0.0",
|
LocalVersion: "2.0.0",
|
||||||
|
@ -214,7 +216,8 @@ func Test_upDevel(t *testing.T) {
|
||||||
Repository: "devel",
|
Repository: "devel",
|
||||||
LocalVersion: "4.0.0",
|
LocalVersion: "4.0.0",
|
||||||
RemoteVersion: "latest-commit",
|
RemoteVersion: "latest-commit",
|
||||||
}},
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue