f3ee2b636a
This will add a new target (fixstyle) to Makefile that runs gofmt tool. Type: style Signed-off-by: Filip Tehlar <ftehlar@cisco.com> Change-Id: Icba60633f82aa8bbc75749f080e00f0375b55a18
15 lines
182 B
Go
15 lines
182 B
Go
package main
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type TapSuite struct {
|
|
HstSuite
|
|
}
|
|
|
|
func (s *TapSuite) SetupSuite() {
|
|
time.Sleep(1 * time.Second)
|
|
s.teardownSuite = setupSuite(&s.Suite, "tap")
|
|
}
|