Skip to content

Commit

Permalink
fix(database: fix logs
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrockopp committed Jun 29, 2023
1 parent f50a30d commit e9766d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions database/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -591,14 +591,14 @@ func testLogs(t *testing.T, db Interface, services []*library.Service, steps []*
serviceLogs := []*library.Log{serviceOne, serviceTwo}

stepOne := new(library.Log)
stepOne.SetID(1)
stepOne.SetID(3)
stepOne.SetBuildID(1)
stepOne.SetRepoID(1)
stepOne.SetStepID(1)
stepOne.SetData([]byte("foo"))

stepTwo := new(library.Log)
stepTwo.SetID(2)
stepTwo.SetID(4)
stepTwo.SetBuildID(1)
stepTwo.SetRepoID(1)
stepTwo.SetStepID(2)
Expand Down

0 comments on commit e9766d4

Please sign in to comment.