diff --git a/internal/command/config.go b/internal/command/config.go index bac892d61..c47ecc048 100644 --- a/internal/command/config.go +++ b/internal/command/config.go @@ -24,7 +24,7 @@ type ErrInterpretersNotFound struct { } func (e ErrInterpretersNotFound) Error() string { - return fmt.Sprintf("unable to loop up any of interpreters %q", e.interpreters) + return fmt.Sprintf("unable to look up any of interpreters %q", e.interpreters) } // Config contains a serializable configuration for a command. diff --git a/internal/runnerv2service/service_test.go b/internal/runnerv2service/service_test.go index 3df78400d..7b2bb6325 100644 --- a/internal/runnerv2service/service_test.go +++ b/internal/runnerv2service/service_test.go @@ -235,7 +235,7 @@ func TestRunnerServiceServerExecute_Input(t *testing.T) { Source: &runnerv2alpha1.ProgramConfig_Commands{ Commands: &runnerv2alpha1.ProgramConfig_CommandList{ Items: []string{ - "bash", + "sleep 30", }, }, },