Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrockopp committed Jun 29, 2023
1 parent 4a0601a commit 541d2e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ func testSteps(t *testing.T, db Interface, builds []*library.Build) {
for _, step := range steps {
got, err := db.GetStepForBuild(builds[0], step.GetNumber())
if err != nil {
t.Errorf("unable to get step %s for build %d: %v", builds[0].GetID(), err)
t.Errorf("unable to get step %s for build %d: %v", step.GetName(), builds[0].GetID(), err)
}
if !reflect.DeepEqual(got, step) {
t.Errorf("GetStepForBuild() is %v, want %v", got, step)
Expand Down

0 comments on commit 541d2e3

Please sign in to comment.