diff options
Diffstat (limited to 'extras/hs-test/framework_test.go')
-rw-r--r-- | extras/hs-test/framework_test.go | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/extras/hs-test/framework_test.go b/extras/hs-test/framework_test.go index 6de8f167f70..fdce5c45bf7 100644 --- a/extras/hs-test/framework_test.go +++ b/extras/hs-test/framework_test.go @@ -6,25 +6,6 @@ import ( "github.com/stretchr/testify/suite" ) -func setupSuite(s *suite.Suite, topologyName string) func() { - t := s.T() - topology, err := LoadTopology(NetworkTopologyDir, topologyName) - if err != nil { - t.Fatalf("error on loading topology '%s': %v", topologyName, err) - } - err = topology.Configure() - if err != nil { - t.Fatalf("failed to configure %s: %v", topologyName, err) - } - - return func() { - if IsPersistent() { - return - } - topology.Unconfigure() - } -} - func TestTapSuite(t *testing.T) { var m TapSuite suite.Run(t, &m) |