@@ -5161,7 +5161,7 @@ status:
5161
5161
expectedPr = expectedPrMinimalStatus
5162
5162
}
5163
5163
5164
- if d := cmp .Diff (expectedPr , reconciledRun , ignoreResourceVersion , ignoreLastTransitionTime , ignoreCompletionTime , ignoreStartTime ); d != "" {
5164
+ if d := cmp .Diff (expectedPr , reconciledRun , ignoreResourceVersion , ignoreLastTransitionTime , ignoreCompletionTime , ignoreStartTime , cmpopts . EquateEmpty () ); d != "" {
5165
5165
t .Errorf ("expected to see pipeline run results created. Diff %s" , diff .PrintWantGot (d ))
5166
5166
}
5167
5167
}
@@ -5482,7 +5482,7 @@ status:
5482
5482
expectedPr = expectedPrMinimalStatus
5483
5483
}
5484
5484
5485
- if d := cmp .Diff (expectedPr , reconciledRun , ignoreResourceVersion , ignoreLastTransitionTime , ignoreCompletionTime , ignoreStartTime ); d != "" {
5485
+ if d := cmp .Diff (expectedPr , reconciledRun , ignoreResourceVersion , ignoreLastTransitionTime , ignoreCompletionTime , ignoreStartTime , cmpopts . EquateEmpty () ); d != "" {
5486
5486
t .Errorf ("expected to see pipeline run results created. Diff %s" , diff .PrintWantGot (d ))
5487
5487
}
5488
5488
}
@@ -8947,7 +8947,7 @@ spec:
8947
8947
if err != nil {
8948
8948
t .Fatalf ("Got an error getting reconciled run out of fake client: %s" , err )
8949
8949
}
8950
- if d := cmp .Diff (tt .expectedPipelineRun , pipelineRun , ignoreResourceVersion , ignoreTypeMeta , ignoreLastTransitionTime , ignoreStartTime , ignoreFinallyStartTime ); d != "" {
8950
+ if d := cmp .Diff (tt .expectedPipelineRun , pipelineRun , ignoreResourceVersion , ignoreTypeMeta , ignoreLastTransitionTime , ignoreStartTime , ignoreFinallyStartTime , cmpopts . EquateEmpty () ); d != "" {
8951
8951
t .Errorf ("expected PipelineRun was not created. Diff %s" , diff .PrintWantGot (d ))
8952
8952
}
8953
8953
})
@@ -9555,7 +9555,7 @@ spec:
9555
9555
if err != nil {
9556
9556
t .Fatalf ("Got an error getting reconciled run out of fake client: %s" , err )
9557
9557
}
9558
- if d := cmp .Diff (tt .expectedPipelineRun , pipelineRun , ignoreResourceVersion , ignoreTypeMeta , ignoreLastTransitionTime , ignoreStartTime , ignoreFinallyStartTime ); d != "" {
9558
+ if d := cmp .Diff (tt .expectedPipelineRun , pipelineRun , ignoreResourceVersion , ignoreTypeMeta , ignoreLastTransitionTime , ignoreStartTime , ignoreFinallyStartTime , cmpopts . EquateEmpty () ); d != "" {
9559
9559
t .Errorf ("expected PipelineRun was not created. Diff %s" , diff .PrintWantGot (d ))
9560
9560
}
9561
9561
})
@@ -10015,7 +10015,7 @@ status:
10015
10015
if err != nil {
10016
10016
t .Fatalf ("Got an error getting reconciled run out of fake client: %s" , err )
10017
10017
}
10018
- if d := cmp .Diff (tt .expectedPipelineRun , pipelineRun , ignoreResourceVersion , ignoreTypeMeta , ignoreLastTransitionTime , ignoreStartTime , cmpopts .SortSlices (lessChildReferences )); d != "" {
10018
+ if d := cmp .Diff (tt .expectedPipelineRun , pipelineRun , ignoreResourceVersion , ignoreTypeMeta , ignoreLastTransitionTime , ignoreStartTime , cmpopts .SortSlices (lessChildReferences ), cmpopts . EquateEmpty () ); d != "" {
10019
10019
t .Errorf ("expected PipelineRun was not created. Diff %s" , diff .PrintWantGot (d ))
10020
10020
}
10021
10021
})
@@ -10549,7 +10549,7 @@ spec:
10549
10549
if err != nil {
10550
10550
t .Fatalf ("Got an error getting reconciled run out of fake client: %s" , err )
10551
10551
}
10552
- if d := cmp .Diff (tt .expectedPipelineRun , pipelineRun , ignoreResourceVersion , ignoreTypeMeta , ignoreLastTransitionTime , ignoreStartTime , ignoreFinallyStartTime ); d != "" {
10552
+ if d := cmp .Diff (tt .expectedPipelineRun , pipelineRun , ignoreResourceVersion , ignoreTypeMeta , ignoreLastTransitionTime , ignoreStartTime , ignoreFinallyStartTime , cmpopts . EquateEmpty () ); d != "" {
10553
10553
t .Errorf ("expected PipelineRun was not created. Diff %s" , diff .PrintWantGot (d ))
10554
10554
}
10555
10555
})
0 commit comments