Skip to content

Commit

Permalink
api: fix tiltfile reconciler_test compilation (#5480)
Browse files Browse the repository at this point in the history
  • Loading branch information
landism authored Feb 11, 2022
1 parent acc6195 commit 0037160
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/controllers/core/tiltfile/reconciler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ func newBlockingTiltfileLoader() blockingTiltfileLoader {
return blockingTiltfileLoader{completionChan: make(chan struct{})}
}

func (b blockingTiltfileLoader) Load(ctx context.Context, tf *v1alpha1.Tiltfile) tiltfile.TiltfileLoadResult {
func (b blockingTiltfileLoader) Load(ctx context.Context, tf *v1alpha1.Tiltfile, prevResult *tiltfile.TiltfileLoadResult) tiltfile.TiltfileLoadResult {
select {
case <-ctx.Done():
case <-b.completionChan:
Expand Down

0 comments on commit 0037160

Please sign in to comment.