Merge branch 'master' into feature/measurement-state

* master:
  Fix bug in duplicate log lines (and events).
This commit is contained in:
Arturo Filastò 2018-03-19 17:30:32 +01:00
commit 5760b9176a
4 changed files with 7 additions and 7 deletions

2
Gopkg.lock generated
View File

@ -89,7 +89,7 @@
branch = "master"
name = "github.com/measurement-kit/go-measurement-kit"
packages = ["."]
revision = "408b54290aef34398a50353e7a66618574d0f075"
revision = "ae6643546db7c99bbc6ecb37b86d04baec04d295"
[[projects]]
branch = "master"

View File

@ -11,8 +11,8 @@ type Dash struct {
// Run starts the test
func (d Dash) Run(ctl *nettests.Controller) error {
dash := mk.Nettest{Name: "Dash"}
ctl.Init(&dash)
dash := mk.NewNettest("Dash")
ctl.Init(dash)
return dash.Run()
}

View File

@ -11,8 +11,8 @@ type NDT struct {
// Run starts the test
func (n NDT) Run(ctl *nettests.Controller) error {
nt := mk.Nettest{Name: "Ndt"}
ctl.Init(&nt)
nt := mk.NewNettest("Ndt")
ctl.Init(nt)
return nt.Run()
}

View File

@ -11,8 +11,8 @@ type WebConnectivity struct {
// Run starts the test
func (n WebConnectivity) Run(ctl *nettests.Controller) error {
nt := mk.Nettest{Name: "WebConnectivity"}
ctl.Init(&nt)
nt := mk.NewNettest("WebConnectivity")
ctl.Init(nt)
return nt.Run()
}