Skip to content

Commit b497310

Browse files
committedMar 25, 2019
Added IntegrationBackCompSuite
Signed-off-by: Lou Marvin Caraig <[email protected]>
1 parent 526f3d9 commit b497310

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
 

‎cmd/test-utils/common.go

+12
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,18 @@ func (s *IntegrationSuite) ParseLogMessages(memLog *bytes.Buffer) []string {
5959
return logMessages
6060
}
6161

62+
type IntegrationBackCompSuite struct {
63+
IntegrationSuite
64+
PrevCmd *Commander
65+
}
66+
67+
func NewIntegrationBackCompSuite() IntegrationBackCompSuite {
68+
return IntegrationBackCompSuite{
69+
IntegrationSuite: NewIntegrationSuite(),
70+
PrevCmd: &Commander{bin: srcdPrevBin},
71+
}
72+
}
73+
6274
type LogMessage struct {
6375
Msg string
6476
Time string

0 commit comments

Comments
 (0)