Skip to content

Commit

Permalink
Fix after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
trasc committed Oct 10, 2023
1 parent 62c3bc2 commit 415867d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/scheduler/scheduler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1585,7 +1585,7 @@ func TestLastSchedulingContext(t *testing.T) {
scheduler := New(qManager, cqCache, cl, recorder)
gotScheduled := make(map[string]kueue.Admission)
var mu sync.Mutex
scheduler.applyAdmission = func(ctx context.Context, w *kueue.Workload) error {
scheduler.applyAdmission = func(_ context.Context, w *kueue.Workload, _ bool) error {
mu.Lock()
gotScheduled[workload.Key(w)] = *w.Status.Admission
mu.Unlock()
Expand Down

0 comments on commit 415867d

Please sign in to comment.