Skip to content

Commit

Permalink
Fix interface error in server test
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam committed Feb 28, 2018
1 parent 396825e commit 7bc3b91
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion integrations/helpers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,8 @@ type serverInfo struct {

hostname,
version,
product string
product,
platform string

numTasks,
numEnabledTasks,
Expand Down Expand Up @@ -217,6 +218,10 @@ func (i serverInfo) Product() string {
return i.product
}

func (i serverInfo) Platform() string {
return i.platform
}

func (i serverInfo) NumTasks() int64 {
return i.numTasks
}
Expand Down

0 comments on commit 7bc3b91

Please sign in to comment.