Skip to content

Commit

Permalink
Fix vet warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
andydotxyz committed Jun 20, 2022
1 parent d38731c commit bd13573
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cmd/fyne/internal/commands/package_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ func Test_fixedVersionInfo(t *testing.T) {
ver string
fixed goversioninfo.FileVersion
}{
{"", goversioninfo.FileVersion{0, 0, 0, 1}},
{"1.1.1.1", goversioninfo.FileVersion{1, 1, 1, 1}},
{"2.2.2", goversioninfo.FileVersion{2, 2, 2, 1}},
{"3.3.3.3.3", goversioninfo.FileVersion{3, 3, 3, 3}},
{"", goversioninfo.FileVersion{Major: 0, Minor: 0, Patch: 0, Build: 1}},
{"1.1.1.1", goversioninfo.FileVersion{Major: 1, Minor: 1, Patch: 1, Build: 1}},
{"2.2.2", goversioninfo.FileVersion{Major: 2, Minor: 2, Patch: 2, Build: 1}},
{"3.3.3.3.3", goversioninfo.FileVersion{Major: 3, Minor: 3, Patch: 3, Build: 3}},
}

for _, tt := range tests {
Expand Down

0 comments on commit bd13573

Please sign in to comment.