Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Maed223 committed Jun 4, 2024
1 parent bb038d6 commit ef8c8ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sourcebundle/builder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -621,9 +621,9 @@ func testingBuilder(t *testing.T, targetDir string, remotePackages map[string]st
if pkg.pkgAddr != pkgAddr {
continue
}
ret.Versions = make([]ModulePackageVersion, len(pkg.versions))
ret.Versions = make([]ModulePackageInfo, len(pkg.versions))
for version := range pkg.versions {
ret.Versions = append(ret.Versions, ModulePackageVersion{
ret.Versions = append(ret.Versions, ModulePackageInfo{
Version: version,
})
}
Expand Down

0 comments on commit ef8c8ac

Please sign in to comment.