nettests: Just use "ndt", which is now "ndt7" in probe-engine (#121)

Part of https://github.com/ooni/backend/issues/369
This commit is contained in:
Simone Basso 2020-03-18 15:50:55 +01:00 committed by GitHub
commit 07e4367f6d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 4 deletions

View file

@ -10,7 +10,8 @@ type NDT struct {
// Run starts the test
func (n NDT) Run(ctl *Controller) error {
builder, err := ctl.Ctx.Session.NewExperimentBuilder("ndt7")
// Since 2020-03-18 probe-engine exports v7 as "ndt".
builder, err := ctl.Ctx.Session.NewExperimentBuilder("ndt")
if err != nil {
return err
}