Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: fix test pod
  • Loading branch information
eliasscosta committed Feb 16, 2024
commit a2edd893b0f97f74488e84d5241c78f243780a6c
2 changes: 1 addition & 1 deletion pipeline/backend/kubernetes/pod_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func TestStepToPodName(t *testing.T) {
assert.EqualValues(t, "wp-01he8bebctabr3kg", name)
name, err = stepToPodName(&types.Step{UUID: "01he8bebctabr3kg", Name: "postgres", Type: types.StepTypeService})
assert.NoError(t, err)
assert.EqualValues(t, "postgres", name)
assert.EqualValues(t, "postgres-01he8bebctabr3kg", name)
Comment thread
eliasscosta marked this conversation as resolved.
Outdated
}

func TestStepLabel(t *testing.T) {
Expand Down