Merge branch 'master' into feature/measurement-state
* master: Fix bug in duplicate log lines (and events).
This commit is contained in:
commit
5760b9176a
2
Gopkg.lock
generated
2
Gopkg.lock
generated
|
@ -89,7 +89,7 @@
|
||||||
branch = "master"
|
branch = "master"
|
||||||
name = "github.com/measurement-kit/go-measurement-kit"
|
name = "github.com/measurement-kit/go-measurement-kit"
|
||||||
packages = ["."]
|
packages = ["."]
|
||||||
revision = "408b54290aef34398a50353e7a66618574d0f075"
|
revision = "ae6643546db7c99bbc6ecb37b86d04baec04d295"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
branch = "master"
|
branch = "master"
|
||||||
|
|
|
@ -11,8 +11,8 @@ type Dash struct {
|
||||||
|
|
||||||
// Run starts the test
|
// Run starts the test
|
||||||
func (d Dash) Run(ctl *nettests.Controller) error {
|
func (d Dash) Run(ctl *nettests.Controller) error {
|
||||||
dash := mk.Nettest{Name: "Dash"}
|
dash := mk.NewNettest("Dash")
|
||||||
ctl.Init(&dash)
|
ctl.Init(dash)
|
||||||
return dash.Run()
|
return dash.Run()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,8 @@ type NDT struct {
|
||||||
|
|
||||||
// Run starts the test
|
// Run starts the test
|
||||||
func (n NDT) Run(ctl *nettests.Controller) error {
|
func (n NDT) Run(ctl *nettests.Controller) error {
|
||||||
nt := mk.Nettest{Name: "Ndt"}
|
nt := mk.NewNettest("Ndt")
|
||||||
ctl.Init(&nt)
|
ctl.Init(nt)
|
||||||
return nt.Run()
|
return nt.Run()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,8 @@ type WebConnectivity struct {
|
||||||
|
|
||||||
// Run starts the test
|
// Run starts the test
|
||||||
func (n WebConnectivity) Run(ctl *nettests.Controller) error {
|
func (n WebConnectivity) Run(ctl *nettests.Controller) error {
|
||||||
nt := mk.Nettest{Name: "WebConnectivity"}
|
nt := mk.NewNettest("WebConnectivity")
|
||||||
ctl.Init(&nt)
|
ctl.Init(nt)
|
||||||
return nt.Run()
|
return nt.Run()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user