Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
bassosimone committed Jun 28, 2024
1 parent 6f1c8e9 commit 59ee9ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/oonimkall/taskrunner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ func TestTaskRunnerRun(t *testing.T) {
fake.Builder.MockNewTargetLoader = func(config *model.ExperimentTargetLoaderConfig) model.ExperimentTargetLoader {
return &mocks.ExperimentTargetLoader{
MockLoad: func(ctx context.Context) (targets []model.ExperimentTarget, err error) {
// We need to mimic wht would happen when settings.Inputs is explicitly provided
// We need to mimic what would happen when settings.Inputs is explicitly provided
for _, input := range inputs {
targets = append(targets, model.NewOOAPIURLInfoWithDefaultCategoryAndCountry(input))
}
Expand Down Expand Up @@ -561,7 +561,7 @@ func TestTaskRunnerRun(t *testing.T) {
fake.Builder.MockNewTargetLoader = func(config *model.ExperimentTargetLoaderConfig) model.ExperimentTargetLoader {
return &mocks.ExperimentTargetLoader{
MockLoad: func(ctx context.Context) (targets []model.ExperimentTarget, err error) {
// We need to mimic wht would happen when settings.Inputs is explicitly provided
// We need to mimic what would happen when settings.Inputs is explicitly provided
for _, input := range inputs {
targets = append(targets, model.NewOOAPIURLInfoWithDefaultCategoryAndCountry(input))
}
Expand Down Expand Up @@ -611,7 +611,7 @@ func TestTaskRunnerRun(t *testing.T) {
fake.Builder.MockNewTargetLoader = func(config *model.ExperimentTargetLoaderConfig) model.ExperimentTargetLoader {
return &mocks.ExperimentTargetLoader{
MockLoad: func(ctx context.Context) (targets []model.ExperimentTarget, err error) {
// We need to mimic wht would happen when settings.Inputs is explicitly provided
// We need to mimic what would happen when settings.Inputs is explicitly provided
for _, input := range inputs {
targets = append(targets, model.NewOOAPIURLInfoWithDefaultCategoryAndCountry(input))
}
Expand Down

0 comments on commit 59ee9ab

Please sign in to comment.