Skip to content

Commit

Permalink
fix: ci issue
Browse files Browse the repository at this point in the history
  • Loading branch information
kehiy committed Aug 21, 2023
1 parent 38f307d commit bbb25b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repo/fsrepo/migrations/migrations.go
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ func fetchMigrations(ctx context.Context, fetcher Fetcher, needed []string, dest
if len(fails) != 0 {
err = fmt.Errorf("failed to download migrations: %s", strings.Join(fails, " "))
if ctx.Err() != nil {
err = fmt.Errorf("%w, %w", ctx.Err(), err)
err = fmt.Errorf("%s, %w", ctx.Err(), err)

Check warning on line 296 in repo/fsrepo/migrations/migrations.go

View check run for this annotation

Codecov / codecov/patch

repo/fsrepo/migrations/migrations.go#L296

Added line #L296 was not covered by tests
}
return nil, err
}
Expand Down

0 comments on commit bbb25b7

Please sign in to comment.