fix(nettests/telegram.go): remove MK option

This option was meaningful for an MK implementation of Telegram but
is not meaningful for the new Go based implementation.

Closes #90
This commit is contained in:
Simone Basso 2019-12-28 17:56:47 +01:00
parent 259ab41b15
commit 991b875bd9

View File

@ -12,9 +12,6 @@ func (h Telegram) Run(ctl *Controller) error {
if err != nil {
return err
}
if err := builder.SetOptionString("LogLevel", "INFO"); err != nil {
return err
}
return ctl.Run(builder, []string{""})
}