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
parent 1d3e7e11ae
commit 07e4367f6d
3 changed files with 5 additions and 4 deletions
+2 -1
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
}