Skip to content

Commit

Permalink
Fix a compiler error in a unit test (argoproj#1514)
Browse files Browse the repository at this point in the history
  • Loading branch information
ian-howell authored and Duske committed Aug 15, 2019
1 parent 1d91414 commit 312387a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/controller/operator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1029,7 +1029,7 @@ spec:
func TestResolvePlaceholdersInOutputValues(t *testing.T) {
wf := unmarshalWF(outputValuePlaceholders)
woc := newWoc(*wf)
woc.controller.Config.ArtifactRepository.S3 = new(S3ArtifactRepository)
woc.controller.Config.ArtifactRepository.S3 = new(config.S3ArtifactRepository)
woc.operate()
assert.Equal(t, wfv1.NodeRunning, woc.wf.Status.Phase)
pods, err := woc.controller.kubeclientset.CoreV1().Pods(wf.ObjectMeta.Namespace).List(metav1.ListOptions{})
Expand Down

0 comments on commit 312387a

Please sign in to comment.