Skip to content

Commit

Permalink
Id to ID
Browse files Browse the repository at this point in the history
  • Loading branch information
Trey Ivy committed Oct 22, 2024
1 parent e396891 commit 7dfc4ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/processing/save.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,12 @@ func (act SaveActor) saveBazelInvocation(
tests []*ent.TestCollection,
targets []*ent.TargetPair,
) (*ent.BazelInvocation, error) {
uniqueId, err := uuid.Parse(summary.InvocationID)
uniqueID, err := uuid.Parse(summary.InvocationID)
if err != nil {
return nil, err
}
create := act.db.BazelInvocation.Create().
SetInvocationID(uniqueId).
SetInvocationID(uniqueID).
SetProfileName(summary.ProfileName).
SetStartedAt(summary.StartedAt).
SetNillableEndedAt(summary.EndedAt).
Expand Down

0 comments on commit 7dfc4ad

Please sign in to comment.