Skip to content

Commit

Permalink
code-gen
Browse files Browse the repository at this point in the history
  • Loading branch information
ericzzzzzzz committed Mar 18, 2024
1 parent ee2e67d commit 7ed2cd9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion pkg/entrypoint/entrypointer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1395,7 +1395,6 @@ func TestGetArtifactValues(t *testing.T) {
}

if d := cmp.Diff(tc.want, got); d != "" {
fmt.Println(got)
t.Fatalf("artifactValues don't match %s", diff.PrintWantGot(d))
}
})
Expand Down
3 changes: 3 additions & 0 deletions pkg/pod/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -447,6 +447,9 @@ func filterResults(results []result.RunResult, specResults []v1.TaskResult, step
}
taskRunStepResults = append(taskRunStepResults, taskRunStepResult)
filteredResults = append(filteredResults, r)
case result.ArtifactsResultType:
// not defined in spec
continue
case result.InternalTektonResultType:
// Internal messages are ignored because they're not used as external result
continue
Expand Down

0 comments on commit 7ed2cd9

Please sign in to comment.