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 a6d0dcc commit c1f92cc
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 @@ -264,7 +264,7 @@ func testSteps(t *testing.T, db Interface, builds []*library.Build) {

images, err := db.ListStepImageCount()
if err != nil {
t.Errorf("unable to list step image count: %v",, err)
t.Errorf("unable to list step image count: %v", err)
}
if len(images) != len(steps) {
t.Errorf("ListStepImageCount() is %v, want %v", len(images), len(steps))
Expand Down Expand Up @@ -584,4 +584,4 @@ func testWorkers(t *testing.T, db Interface) {
if counter != methods {
t.Errorf("total number of methods called is %v, want %v", counter, methods)
}
}
}

0 comments on commit c1f92cc

Please sign in to comment.