Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 1 | package main |
2 | |||||
3 | import ( | ||||
4 | "time" | ||||
5 | ) | ||||
6 | |||||
7 | type TapSuite struct { | ||||
8 | HstSuite | ||||
9 | } | ||||
10 | |||||
11 | func (s *TapSuite) SetupSuite() { | ||||
12 | time.Sleep(1 * time.Second) | ||||
Filip Tehlar | 608d006 | 2023-04-28 10:29:47 +0200 | [diff] [blame] | 13 | s.HstSuite.SetupSuite() |
Maros Ondrejicka | 2908f8c | 2023-02-02 08:58:04 +0100 | [diff] [blame] | 14 | s.configureNetworkTopology("tap") |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 15 | } |