mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
Fix failing test due to merge inaccuracies (#36273)
We merged #35685, but since it was hanging for some time another PR made it in, and that PR was not updated to use latest main so the test failure was not caught in CI.
This commit is contained in:
parent
180a682546
commit
8ddb92de23
1 changed files with 8 additions and 0 deletions
|
|
@ -1614,6 +1614,14 @@ func TestMDMTokenUpdateIOS(t *testing.T) {
|
|||
}, nil
|
||||
}
|
||||
|
||||
ds.AppConfigFunc = func(context.Context) (*fleet.AppConfig, error) {
|
||||
return &fleet.AppConfig{}, nil
|
||||
}
|
||||
|
||||
ds.NewActivityFunc = func(ctx context.Context, user *fleet.User, activity fleet.ActivityDetails, details []byte, createdAt time.Time) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
ds.NewJobFunc = func(ctx context.Context, j *fleet.Job) (*fleet.Job, error) {
|
||||
return j, nil
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue